2022-04-17 20:25:37 +00:00
|
|
|
{% extends "base.html" %} {% block meta %}
|
|
|
|
|
2022-05-10 17:47:41 +00:00
|
|
|
{% set description = page.description %}
|
2022-04-17 20:25:37 +00:00
|
|
|
{{ macros::get_meta_tags(title=page.title, description=description) }}
|
|
|
|
|
|
|
|
{% endblock meta %} {% block content %}
|
|
|
|
|
|
|
|
<div class="page__container">
|
|
|
|
<h1 class="page__group-title">{{ page.title }}</h1>
|
|
|
|
{% include "blog/_meta.html" %}
|
|
|
|
|
|
|
|
<div class="blog__content">
|
|
|
|
{{ page.content | safe }}
|
|
|
|
</div>
|
|
|
|
<br>
|
|
|
|
<br>
|
|
|
|
<div class="blog__post-tag-container">
|
|
|
|
{% for t in page.taxonomies.tags %}
|
|
|
|
<a class="blog__post-tag" href="/tags/{{t | slugify }}">#{{ t }}</a>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock content %}
|