1
0
Fork 0
forked from github/pelican
pelican-theme/templates/page.html

16 lines
446 B
HTML
Raw Normal View History

2024-12-19 09:56:25 +01:00
{% extends "base.html" %}
{% block html_lang %}{{ page.lang }}{% endblock %}
{% block title %}{{ SITENAME|striptags }} - {{ page.title|striptags }}{%endblock%}
{% block head %}
{{ super() }}
{% endblock %}
{% block content %}
<article>
<div class="prose dark:prose-dark md:prose-base lg:prose-lg hyphens-auto">
<h3 class="text-3xl md:text-5xl">{{ page.title }}</h3>
{{ page.content }}
</div>
2024-12-19 09:56:25 +01:00
</article>
{% endblock %}