16 lines
584 B
HTML
16 lines
584 B
HTML
<html xmlns:f="http://typo3.org/ns/TYPO3/Fluid/ViewHelpers"
|
|
data-namespace-typo3-fluid="true">
|
|
|
|
{f:layout(name: 'Default')}
|
|
|
|
<f:section name="Content">
|
|
<f:for each="{menu}" as="page">
|
|
{f:render(partial: 'Menu/Page', arguments: {page: page})}
|
|
</f:for>
|
|
|
|
<!-- <nav class="blog-pagination"> -->
|
|
<!-- <a class="btn btn-outline-primary" href="#">Older</a> -->
|
|
<!-- <a class="btn btn-outline-secondary disabled" href="#" tabindex="-1" aria-disabled="true">Newer</a> -->
|
|
<!-- </nav> -->
|
|
</f:section>
|
|
</html>
|