blog-rekahsoft-ca/templates/partials/post-teaser.html
Collin J. Doering 0b82fc7874 Use .row instead of .container when within .container
This is due to a change from skeleton 1.2 -> 2.04 that was missed in
commit 06114cf (last commit).

Signed-off-by: Collin J. Doering <collin.doering@rekahsoft.ca>
2015-01-25 03:18:04 -05: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='six columns alpha'>
$if(teaser)$
<a class='read-more' href='$url$'>Read More</a>
$else$
<span class='no-teaser'></span>
$endif$
</div>
<div class='six columns omega'>
<p class='tags'>$tags$</p>
</div>
</div>
</footer>
</article>