26 lines
529 B
Text
26 lines
529 B
Text
---
|
|
layout: layouts/parent.njk
|
|
---
|
|
<div>
|
|
<main id="skip">
|
|
<div id="titlebar">scanline.html</div>
|
|
<div id="page">
|
|
{{ content | safe }}
|
|
</div>
|
|
</main>
|
|
</div>
|
|
|
|
<aside id="more-info">
|
|
{%- if parent -%}
|
|
<div class="card parent">
|
|
{%- for post in collections.all -%}
|
|
{%- if post.data.title == parent -%}<a href="{{ post.url }}">← {{ post.data.title }}</a>{%- endif -%}
|
|
{%- endfor -%}
|
|
</div>
|
|
{%- endif -%}
|
|
|
|
<div class="card">
|
|
<h2>Sommaire</h2>
|
|
{{ content | toc | safe }}
|
|
</div>
|
|
</aside>
|