19 lines
646 B
PHP
19 lines
646 B
PHP
<?php
|
|
/*-----------------------------------------------------------------------------
|
|
|
|
orblog - Simple blog for hidden networks.
|
|
|
|
Version: 0.1
|
|
Git: https://code.fossee.net/chicory/orblog-legacy
|
|
Copyright: chicory@fossee.net 2020
|
|
License: http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
-----------------------------------------------------------------------------*/
|
|
?>
|
|
<h1><?=$_LANG['stats']?></h1>
|
|
<ul>
|
|
<li><?=$_LANG['all_posts_count']?> : <?=$_TPL['posts']?></li>
|
|
<li><?=$_LANG['all_comm_count']?> : <?=$_TPL['comments']?></li>
|
|
</ul>
|
|
|