blog-rekahsoft-ca/templates/partials/post-teaser.html
Collin J. Doering c9db6b881d Fix spacing of post footers
Give more space to tags, as 'Read More' and 'See Comments' each take a
static amount of space but the number of tags for a given post varies.

Signed-off-by: Collin J. Doering <collin.doering@rekahsoft.ca>
2015-07-19 03:29:07 -04:00

34 lines
693 B
HTML

<article class='post container'>
<header>
<h1 class='title'>
<a href='$url$'>$title$</a>
</h1>
<p class='info'>
Posted on
<span class='date'>$date$</span>
$if(author)$ by
<span class='author'>$author$</span>
$endif$
</p>
</header>
$if(teaser)$
$teaser$
$else$
$body$
$endif$
<footer>
<div class='row'>
<div class='two columns alpha'>
$if(teaser)$
<a class='read-more' href='$url$'>Read More</a>
$else$
<span class='no-teaser'></span>
$endif$
</div>
<div class='ten columns omega'>
<p class='tags'>$tags$</p>
</div>
</div>
</footer>
</article>