bludit/themes/pure/php/post.php

19 lines
468 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>
2015-05-19 02:11:44 +02:00
<span>Date: <?php echo $Post->dateCreated() ?></span>
2015-03-08 18:02:59 +01:00
</p>
</header>
<div class="post-description">
<?php echo $Post->content() ?>
</div>
2015-05-31 03:06:55 +02:00
</section>