LuckyCoinkydink/templates/timeline/staticpage-entries-listing.tpl
DonChambers 0faf2b9899 Timeline Theme - more icons & font awesome upgrade
Added more social icons to the index footer, upgraded to Font Awesome 5.7.2.
2019-03-18 09:01:21 -05:00

22 lines
1.3 KiB
Smarty

<h4>{$CONST.STATICPAGE_NEW_HEADLINES|capitalize}</h4>
{if $entries}
<dl>
{foreach from=$entries item="dategroup"}
{foreach from=$dategroup.entries item="entry"}
<dt class="serendipity_recententries_entrylink"><a href="{$entry.link}" title="{$entry.title|@default:$entry.id}">{$entry.title|@default:$entry.id}</a></dt>
<dd class="text-muted serendipity_recententries_entrydate"><small>{$dategroup.date|@formatTime:$template_option.date_format}</small></dd>
{/foreach}
{/foreach}
</dl>
{if $staticpage_related_category_id >0}
<a class="btn btn-md btn-default btn-theme" href="{$serendipityBaseURL}{$serendipityRewritePrefix}{getCategoryLinkByID cid=$staticpage_related_category_id}">{$CONST.STATICPAGE_ARTICLE_OVERVIEW|capitalize} <i class="fas fa-arrow-right" aria-hidden="true"></i></a><br />
{else}
<a class="btn btn-md btn-default btn-theme" href="{$serendipityArchiveURL}/P1.html">{$CONST.STATICPAGE_ARTICLE_OVERVIEW|capitalize} <i class="fas fa-arrow-right" aria-hidden="true"></i></a><br />
{/if}
{else}
<div id="search-block" class="row">
<div class="col-md-10 col-md-offset-1">
<p class="alert alert-info noentries"><span class="fa-stack"><i class="far fa-circle fa-stack-2x"></i><i class="fas fa-info fa-stack-1x"></i></span> {$CONST.NO_ENTRIES_TO_PRINT}</p>
</div>
</div>
{/if}