You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
495 B

<div class="blogtools{if !empty($container_class)} {$container_class}{/if}">
<div class="table-responsive">
<table class="table">
<tr><th>{tr}Date{/tr}</th><th>{tr}Title{/tr}</th><th>{tr}Author{/tr}</th></tr>
{foreach from=$blogItems item=blogItem}
<tr>
<td>{$blogItem.created|tiki_short_date}</td>
<td><a class="link" href="{$blogItem.postId|sefurl:blogpost}">{$blogItem.title}</a></td>
<td>{$blogItem.user|username}</td>
</tr>
{/foreach}
</table>
</div>
</div>