mirror of
https://github.com/scratchfoundation/scratchwikiskin.git
synced 2024-12-03 12:26:56 -05:00
Added last modified date
This commit is contained in:
parent
7aa40c31da
commit
6be8ff903c
2 changed files with 24 additions and 0 deletions
|
@ -153,6 +153,22 @@ class ScratchWikiSkinTemplate extends BaseTemplate{
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
</div>
|
</div>
|
||||||
</article>
|
</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>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
8
main.css
8
main.css
|
@ -463,3 +463,11 @@ img{
|
||||||
#mw-content-text{
|
#mw-content-text{
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
ul#f-list li {
|
||||||
|
display: inline-block;
|
||||||
|
font-size: 11px;
|
||||||
|
color: rgb(95, 95, 95);
|
||||||
|
}
|
||||||
|
ul#f-list {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue