ds-site/Resources/Private/Templates/Page/Default.html
Daniel Siepmann e5ec51161d Use detail and summary for make TOC and stuff collapsable
This provides info on mobile and desktop, but allows mobile users to
easily collapse to jump to content.
2021-12-08 11:55:27 +01:00

27 lines
720 B
HTML

<html xmlns:f="http://typo3.org/ns/TYPO3/Fluid/ViewHelpers"
data-namespace-typo3-fluid="true">
<f:layout name="BlogSidebar" />
<f:section name="Content">
{contentMain -> f:format.raw()}
</f:section>
<f:section name="Aside">
<details open>
<summary>
<h2>Blog Posts by</h2>
</summary>
{f:render(partial: 'TopicList', arguments: {
headline: 'Compatibility with TYPO3',
topics: allTypo3Compatible
})}
{f:render(partial: 'TopicList', arguments: {
headline: 'Topic',
topics: allTopics
})}
</details>
</f:section>
</html>