You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
998 B
Smarty
31 lines
998 B
Smarty
<div class="card" style="border-color: {../bgColor}">
|
|
<!-- BEGIN posts -->
|
|
<!-- IF @first -->
|
|
<div component="category/posts">
|
|
<p>
|
|
<a href="{config.relative_path}/user/{../user.userslug}">
|
|
<!-- IF ../user.picture -->
|
|
<img class="user-img" alt="{../user.username}" src="{../user.picture}" />
|
|
<!-- ELSE -->
|
|
<span class="user-icon user-img" title="{../user.username}" style="background-color: {../user.icon:bgColor};">{../user.icon:text}</span>
|
|
<!-- ENDIF ../user.picture -->
|
|
</a>
|
|
<a class="permalink" href="{config.relative_path}/topic/{../topic.slug}<!-- IF ../index -->/{../index}<!-- ENDIF ../index -->">
|
|
<small class="timeago" title="{../timestamp}"></small>
|
|
</a>
|
|
</p>
|
|
<div class="post-content">
|
|
{../content}
|
|
</div>
|
|
</div>
|
|
<!-- ENDIF @first -->
|
|
<!-- END posts -->
|
|
|
|
<!-- IF !../posts.length -->
|
|
<div component="category/posts">
|
|
<div class="post-content">
|
|
[[category:no_new_posts]]
|
|
</div>
|
|
</div>
|
|
<!-- ENDIF !../posts.length -->
|
|
</div> |