33 lines
1.2 KiB
PHP
33 lines
1.2 KiB
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
|
||
|
|
||
|
-----------------------------------------------------------------------------*/
|
||
|
?>
|
||
|
<div class="title">
|
||
|
<div class="title_tab">
|
||
|
<?=$_TPL['time']?>
|
||
|
</div>
|
||
|
<div class="title_etc">
|
||
|
<?php if($_SESSION['admin']) { ?>
|
||
|
[ <a href="index.php?view=admin&page=edit_post&id=<?=$_TPL['id']?>"><?=$_LANG['edit']?></a> ]
|
||
|
<?php } ?>
|
||
|
<a href="index.php?view=post&id=<?=$_TPL['id']?>#comments"><?=$_LANG['comments']?> ( <?=$_TPL['comments']?> )</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="clear"></div>
|
||
|
<div class="content">
|
||
|
<h1><a href="index.php?view=post&id=<?=$_TPL['id']?>" class="post_title"><?=$_TPL['title']?></a></h1>
|
||
|
<?=$_TPL['desc']?>
|
||
|
<?php if($_TPL['tags']) { ?>
|
||
|
<?=$_LANG['tags']?>: <?=$_TPL['tags']?><br>
|
||
|
<?php } ?>
|
||
|
<br>
|
||
|
</div>
|