quitsocialmedia.club/_layouts/page.html

35 lines
607 B
HTML

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