26 lines
666 B
HTML
26 lines
666 B
HTML
<html xmlns:f="http://typo3.org/ns/TYPO3/Fluid/ViewHelpers"
|
|
data-namespace-typo3-fluid="true">
|
|
<header>
|
|
<div class="website-title">
|
|
<a href="/">{settings.websiteTitle}</a>
|
|
</div>
|
|
<nav>
|
|
<a href="#">RSS Feed</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
<section>
|
|
{f:render(section: 'Content', arguments: _all)}
|
|
</section>
|
|
|
|
<aside>
|
|
{f:render(section: 'Aside', arguments: _all)}
|
|
</aside>
|
|
</main>
|
|
|
|
<footer>
|
|
<p>ⓒ by Daniel Siepmann 2016 - {f:format.date(format: 'Y', date: 'now')}</p>
|
|
<!-- TODO: Add imprint -->
|
|
</footer>
|
|
</html>
|