flatpress/fp-interface/themes/leggero/entry-default.tpl
azett 52bf429a01 Replaced Smarty 2.6.31-dev with v 4.0.4, keeping the FP-specific Smarty plugins.
Updated calls to current Smarty API (register_function()/register_modifier()/register_block() -> registerPlugin(); assign_by_ref() -> assignByRef()).
Fixed file includes in templates with quotes.
Removed SmartyValidate.class.php includes.

Still work in progress as some errors still appear!
2022-01-23 15:02:33 +01:00

42 lines
1.2 KiB
Smarty

<div itemscope itemtype="http://schema.org/BlogPosting" id="{$id}" class="entry {$date|date_format:"y-%Y m-%m d-%d"}">
{* using the following way to print the date, if more *}
{* than one entry have been written the same day, *}
{* the date will be printed only once *}
{$date|date_format_daily:"<h2 class=\"date\">`$fp_config.locale.dateformat`</h2>"}
<h3 itemprop="name">
<a href="{$id|link:post_link}">
{$subject|tag:the_title}
</a>
</h3>
{include file="shared:entryadminctrls.tpl"}
<span itemprop="articleBody">
{$content|tag:the_content}
</span>
<ul class="entry-footer">
<li class="entry-info">Posted by <span itemprop="author">{$author}</span> at
{$date|date_format}
<span itemprop="articleSection">
{if ($categories)} in {$categories|@filed}{/if}
</span>
</li>
{if !(in_array('commslock', $categories) && !$comments)}
<li class="link-comments">
<a href="{$id|link:comments_link}#comments">{$comments|tag:comments_number}
{if isset($views)}(<strong>{$views}</strong> views){/if}
</a>
</li>
{/if}
</ul>
</div>