Added last modified date

This commit is contained in:
EH7meow 2013-11-16 21:37:13 +00:00
parent 7aa40c31da
commit 6be8ff903c
2 changed files with 24 additions and 0 deletions

View file

@ -153,6 +153,22 @@ class ScratchWikiSkinTemplate extends BaseTemplate{
<?php endif; ?>
</div>
</article>
<?php
// generate additional footer links
$footerlinks = array(
'lastmod',
// 'viewcount',
);
?>
<ul id="f-list">
<?php
foreach ( $footerlinks as $aLink ) {
if ( isset( $this->data[$aLink] ) && $this->data[$aLink] ) {
?> <li id="<?php echo $aLink ?>"><?php $this->html( $aLink ) ?></li>
<?php }
}
?>
</ul>
</div>
</div>
</div>

View file

@ -463,3 +463,11 @@ img{
#mw-content-text{
overflow: hidden;
}
ul#f-list li {
display: inline-block;
font-size: 11px;
color: rgb(95, 95, 95);
}
ul#f-list {
text-align: center;
}