fixing timestamps in category view (topics listing) for noscript

This commit is contained in:
Julian Lam
2013-09-20 20:48:14 -04:00
parent 8243019a60
commit 3eb594df43
2 changed files with 9 additions and 1 deletions

View File

@@ -6,11 +6,12 @@
<ul class="topics">
<!-- BEGIN topics -->
<li>
<span class="timestamp">{topics.teaser_timestamp}</span>
<a href="../../topic/{topics.slug}">{topics.title} ({topics.postcount})</a>
<div class="teaser">
<img class="img-thumbnail" src="{topics.teaser_userpicture}" />
<p>
{topics.teaser_text} &mdash; {topics.teaser_timestamp} ago
{topics.teaser_text}
</p>
<div class="clear"></div>
</div>

View File

@@ -32,6 +32,13 @@ noscript {
.default;
}
.timestamp {
float: right;
color: #999;
font-style: italic;
font-size: 12px;
}
.teaser {
margin-left: 16px;
margin-top: 8px;