bludit/themes/pure/php/post.php

18 lines
460 B
PHP
Raw Normal View History

2015-03-08 18:02:59 +01:00
<h1 class="content-subhead">Post</h1>
<section class="post">
<header class="post-header">
<h2 class="post-title">
<?php echo $Post->title() ?>
</h2>
<p class="post-meta">
<span>Posted by <?php echo $Post->author() ?></span>
<span>Date: <?php echo $Post->date() ?></span>
</p>
</header>
<div class="post-description">
<?php echo $Post->content() ?>
</div>
2015-05-19 01:22:05 +02:00
</section>