26 lines
487 B
Text
26 lines
487 B
Text
---
|
|
layout: layouts/parent.njk
|
|
---
|
|
<main id="skip">
|
|
<div>
|
|
{{ content | safe }}
|
|
</div>
|
|
</main>
|
|
|
|
<aside id="more-info">
|
|
<div class="card">
|
|
<h2>Sommaire</h2>
|
|
{{ content | toc | safe }}
|
|
</div>
|
|
|
|
{%- for tag in models -%}
|
|
<div class="card">
|
|
<h2>{{ tag }}</h2>
|
|
<ul>
|
|
{%- for post in collections[tag] -%}
|
|
<li><a href="#">{{ post.data.title }}</a></li>
|
|
{%- endfor -%}
|
|
</ul>
|
|
</div>
|
|
{%- endfor -%}
|
|
</aside>
|