quitsocialmedia.club/_layouts/page.html

31 lines
567 B
HTML
Raw Normal View History

2020-09-17 14:41:50 +02:00
---
layout: wrapper
---
<div class="row page-header">
<div class="one column">
<h1>{{ page.title }}</h1>
<p>{{ page.description }}</p>
</div>
</div>
2020-12-31 20:03:57 +01:00
{% 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 %}
2020-09-17 14:41:50 +02:00
</div>
</div>
{% endif %}
<div class="row">
<div class="one column">
<article class="note">
2020-12-31 20:03:57 +01:00
{% include anchor-parser.html html=content %}
2020-09-17 14:41:50 +02:00
</article>
</div>
</div>