1
1
mirror of https://github.com/xplosionmind/quitsocialmedia.club.git synced 2024-12-29 09:30:34 +01:00
quitsocialmedia.club/_layouts/page.html
2020-12-31 20:03:57 +01:00

31 lines
567 B
HTML

---
layout: wrapper
---
<div class="row page-header">
<div class="one column">
<h1>{{ page.title }}</h1>
<p>{{ page.description }}</p>
</div>
</div>
{% if page.toc == 1 %}
<div class="row toc">
<div class="one column">
<h2>
{% if page.lang == 'it' %}
Indice
{% else %}
Table of contents
{% endif %}
</h2>
{% include toc.html html=content sanitize=true %}
</div>
</div>
{% endif %}
<div class="row">
<div class="one column">
<article class="note">
{% include anchor-parser.html html=content %}
</article>
</div>
</div>