mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
Template/Home
* update footer to current year * display current revision
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
define('AOWOW_REVISION', 15);
|
||||
define('AOWOW_REVISION', 16);
|
||||
define('CLI', PHP_SAPI === 'cli');
|
||||
|
||||
|
||||
|
||||
@@ -4,25 +4,25 @@
|
||||
<?php $this->brick('head'); ?>
|
||||
</head>
|
||||
|
||||
<body<?php echo User::isPremium() ? ' class="premium-logo"' : null; ?>>
|
||||
<body<?=(User::isPremium() ? ' class="premium-logo"' : null); ?>>
|
||||
<div id="layers"></div>
|
||||
<div class="layout nosidebar" id="layout">
|
||||
<div class="layout-inner" id="layout-inner">
|
||||
<div class="header" id="header">
|
||||
<div id="header-logo">
|
||||
<a class="header-logo" href="."></a>
|
||||
<h1><?php echo htmlentities($this->name); ?></h1>
|
||||
<h1><?=htmlentities($this->name); ?></h1>
|
||||
</div>
|
||||
</div>
|
||||
<div id="wrapper" class="wrapper">
|
||||
<div class="toplinks linklist"><?php $this->brick('headerMenu'); ?></div>
|
||||
<div class="toptabs" id="toptabs"></div>
|
||||
<div class="topbar" id="topbar">
|
||||
<div class="topbar-search"><form action="."><a href="javascript:;"></a><input name="search" size="35" id="livesearch-generic" value="<?php echo isset($this->search) ? $this->search : ''; ?>" /></form></div>
|
||||
<div class="topbar-search"><form action="."><a href="javascript:;"></a><input name="search" size="35" id="livesearch-generic" value="<?=(isset($this->search) ? $this->search : ''); ?>" /></form></div>
|
||||
<div class="topbar-browse" id="topbar-browse"></div>
|
||||
<div class="topbar-buttons" id="topbar-buttons"></div>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript">
|
||||
<?php echo $this->writeGlobalVars(); ?>
|
||||
<?=$this->writeGlobalVars(); ?>
|
||||
</script>
|
||||
|
||||
@@ -6,5 +6,4 @@ else:
|
||||
echo '<a href="?account=signin">'.Lang::main('signIn').'</a>';
|
||||
endif;
|
||||
?>
|
||||
|<a href="#" id="toplinks-feedback" class="icon-email"><?php echo Lang::main('feedback'); ?></a>
|
||||
|<a href="javascript:;" id="toplinks-language"><?php echo Lang::main('language'); ?></a>
|
||||
|<a href="#" id="toplinks-feedback" class="icon-email"><?=Lang::main('feedback'); ?></a>|<a href="javascript:;" id="toplinks-language"><?=Lang::main('language'); ?></a>
|
||||
|
||||
@@ -68,10 +68,11 @@ endif;
|
||||
|
||||
<div class="footer">
|
||||
<div class="footer-links linklist">
|
||||
<a href="?aboutus"><?=Lang::main('aboutUs'); ?></a>|
|
||||
<a href="#" id="footer-links-language"><?=Lang::main('language'); ?></a>
|
||||
<a href="?aboutus"><?=Lang::main('aboutUs'); ?></a>|<a href="#" id="footer-links-language"><?=Lang::main('language'); ?></a>
|
||||
</div>
|
||||
<div class="footer-copy">
|
||||
ツ 2016 Aowow<br />rev. <?=AOWOW_REVISION; ?>
|
||||
</div>
|
||||
<div class="footer-copy">ツ 2015 Aowow</div>
|
||||
</div>
|
||||
|
||||
<?php $this->brick('pageTemplate'); ?>
|
||||
|
||||
Reference in New Issue
Block a user