49 lines
2.3 KiB
Smarty
49 lines
2.3 KiB
Smarty
<article id="staticpage_{$staticpage_pagetitle|@makeFilename}" class="clearfix serendipity_staticpage{if $staticpage_articleformat} serendipity_entry{/if}">
|
|
<header>
|
|
<h2>{if $staticpage_articleformat}{if $staticpage_articleformattitle}{$staticpage_articleformattitle|@escape}{else}{$staticpage_pagetitle}{/if}{else}{if $staticpage_headline}{$staticpage_headline|@escape}{else}{$staticpage_pagetitle}{/if}{/if}</h2>
|
|
{if is_array($staticpage_childpages)}
|
|
<ul id="staticpage_childpages">
|
|
{foreach from=$staticpage_childpages item="childpage"}
|
|
<li><a href="{$childpage.permalink|@escape}" title="{$childpage.pagetitle|@escape}">{$childpage.pagetitle|@escape}</a></li>
|
|
{/foreach}
|
|
</ul>
|
|
{/if}
|
|
</header>
|
|
{if $staticpage_pass AND $staticpage_form_pass != $staticpage_pass}
|
|
<form class="staticpage_password_form" action="{$staticpage_form_url}" method="post">
|
|
<fieldset>
|
|
<legend>{$CONST.STATICPAGE_PASSWORD_NOTICE}</legend>
|
|
<input name="serendipity[pass]" type="password" value="">
|
|
<input name="submit" type="submit" value="{$CONST.GO}" >
|
|
</fieldset>
|
|
</form>
|
|
{else}
|
|
{if $staticpage_precontent}
|
|
<div class="clearfix content serendipity_preface">
|
|
{$staticpage_precontent}
|
|
</div>
|
|
{/if}
|
|
{if $staticpage_content}
|
|
<div class="clearfix content {if $staticpage_articleformat}serendipity_entry_body{else}staticpage_content{/if}">
|
|
{$staticpage_content}
|
|
</div>
|
|
{/if}
|
|
{/if}
|
|
{if $staticpage_author or $staticpage_lastchange or $staticpage_adminlink}
|
|
<footer class="staticpage_metainfo">
|
|
<p>
|
|
{if $staticpage_author}
|
|
<span class="single_user"><span class="visuallyhidden">{$CONST.POSTED_BY} </span>{$staticpage_author|@escape}
|
|
{/if}
|
|
{if $staticpage_author AND $staticpage_lastchange} | </span>{/if}
|
|
{if $staticpage_lastchange}
|
|
<span class="visuallyhidden">{$CONST.ON} </span><time datetime="{$staticpage_lastchange|@serendipity_html5time}">{$staticpage_lastchange|@formatTime:$template_option.date_format}</time>
|
|
{/if}
|
|
{if $staticpage_adminlink AND $staticpage_adminlink.page_user}
|
|
| <a href="{$staticpage_adminlink.link_edit}">{$staticpage_adminlink.link_name|@escape}</a>
|
|
{/if}
|
|
</p>
|
|
</footer>
|
|
{/if}
|
|
</article>
|