2k15 is basically 2k11, but up to date. Changes include: - mobile-first CSS - toggle-style smallscreen nav instead of select menu - different choice of webfonts - updated JS assets - removed some JS cruft (plugins that are no longer necessary) - reduced visual style (no, it's NOT 'flat design'!) - simplified layout (number of columns depends on resolution) - reduced theme options Note: 2k15 is NOT compatible with the 2k11 user.css generator. Currently, there is no 2k15 user.css generator. I don't intend on building one at the moment. Also note that I do NOT suggest 2k15 should replace 2k11 as the default or standard theme in s9y.
18 lines
937 B
Smarty
18 lines
937 B
Smarty
{foreach from=$trackbacks item=trackback}
|
|
<article id="c{$trackback.id}" class="trackback">
|
|
<h4><cite>{$trackback.author|@default:$CONST.ANONYMOUS}</cite> {$CONST.ON} <time datetime="{$trackback.timestamp|@serendipity_html5time}">{$trackback.timestamp|@formatTime:$template_option.date_format}</time>: <a href="{$trackback.url|@strip_tags}">{$trackback.title}</a></h4>
|
|
{if $trackback.body == ''}
|
|
<p class="msg-notice no-content"><span class="icon-info-circled" aria-hidden="true"></span> {$CONST.NO_ENTRIES_TO_PRINT}</p>
|
|
{else}
|
|
<details>
|
|
<summary>{$CONST.VIEW_EXTENDED_ENTRY|@sprintf:$trackback.title}</summary>
|
|
<div class="clearfix">
|
|
{$trackback.body|@strip_tags|@escape:all}
|
|
</div>
|
|
</details>
|
|
{/if}
|
|
</article>
|
|
{foreachelse}
|
|
<p class="msg-notice"><span class="icon-info-circled" aria-hidden="true"></span> {$CONST.NO_TRACKBACKS}</p>
|
|
{/foreach}
|