mirror of
https://github.com/helenclx/leilukin-site.git
synced 2025-04-11 10:32:42 +00:00
20 lines
379 B
Plaintext
20 lines
379 B
Plaintext
---
|
|
layout: main/base
|
|
---
|
|
|
|
<header class="main__header">
|
|
<h1>{{ pageTitle or title }}</h1>
|
|
{% if desc %}
|
|
<p>{{ desc }}</p>
|
|
{% endif %}
|
|
</header>
|
|
|
|
<div class="content__wrapper">
|
|
{% if toc %}
|
|
{% include "toc.njk" %}
|
|
{% endif %}
|
|
|
|
<div class="content {{'content--divided' if isContentDivided }}">
|
|
{{ content | safe }}
|
|
</div>
|
|
</div> |