mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 14:27:49 +00:00
39 lines
1.4 KiB
HTML
39 lines
1.4 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% import "snippets.html" as snippets %}
|
|
|
|
{% block title %}{{ page.title }} | {{ config.title }}{% endblock title %}
|
|
|
|
{% block main %}
|
|
<h1>{{ page.title }}</h1>
|
|
<time datetime="{{ page.date | date(format="%Y-%m-%d") }}" class="post-date">
|
|
{{ page.date | date(format="%b %d, %Y") }}
|
|
{% if page.extra.updated %} (updated on {{ page.extra.updated | date(format="%b %d, %Y") }}) {% endif %}
|
|
</time>
|
|
{{ page.content | safe }}
|
|
|
|
<div>
|
|
<h2>Thank You!</h2>
|
|
<p>Thanks a lot to all the contributors this month!</p>
|
|
<p>I also want to thank all the people who support me on <a href="https://github.com/sponsors/phil-opp">GitHub</a>, <a href="https://www.patreon.com/phil_opp">Patreon</a>, and <a href="https://donorbox.org/phil-opp">Donorbox</a>. It means a lot to me!</p>
|
|
</div>
|
|
{% endblock main %}
|
|
|
|
{% block after_main %}
|
|
<hr>
|
|
<div class="PageNavigation">
|
|
{% if page.earlier %}
|
|
<a class="prev" href="{{ page.earlier.path | safe }}">« {{ page.earlier.title }}</a>
|
|
{% endif %}
|
|
{% if page.later %}
|
|
<a class="next" href="{{ page.later.path | safe }}">{{ page.later.title }} »</a>
|
|
{% endif %}
|
|
</div>
|
|
<hr>
|
|
<section>
|
|
<h2 id="comments">Comments</h2>
|
|
{{ snippets::giscus(search_term=page.title, translated=false) }}
|
|
</section>
|
|
|
|
{% endblock after_main %}
|