Collin J. Doering
2401f3aa9b
Both the clay css and templates/partials/post.html added a horizontal rule at the top of each post footer (using the css border property and hr respectively). Opted for using the clay css one as its used on multiple pages (eg. blog pages and tag pages). Signed-off-by: Collin J. Doering <collin.doering@rekahsoft.ca>
26 lines
619 B
HTML
26 lines
619 B
HTML
<div class='container' id='post-page'>
|
|
<article class='post'>
|
|
<header>
|
|
<h1 class='title'>$title$</h1>
|
|
<p class='info'>
|
|
Posted on
|
|
<span class='date'>$date$</span>
|
|
$if(author)$ by
|
|
<span class='author'>$author$</span>
|
|
$endif$
|
|
</p>
|
|
</header>
|
|
$body$
|
|
<footer>
|
|
<div class='container'>
|
|
<div class='eight columns alpha'>
|
|
<a class='read-more' href='$url$'>See Comments</a>
|
|
</div>
|
|
<div class='eight columns omega'>
|
|
<p class='tags'>$tags$</p>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
</article>
|
|
</div>
|