---
layout: layouts/parent.njk
<div>
<main id="skip">
<div id="titlebar">kazhnuzvault.html</div>
<div id="page">
{{ content | safe }}
</div>
</main>
<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 -%}
{%- endif -%}
<div class="card">
<h2>Sommaire</h2>
{{ content | toc | safe }}
<div id="links">
{% renderFile "./_includes/websites.md" %}
{%- for tag in models -%}
<h2>{{ tag }}</h2>
<ul>
{%- for post in collections[tag]-%}
<li><a href="{{ post.url }}">{{ post.data.title }}</a></li>
</ul>
</aside>