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

16 lines
449 B
HTML

{% extends "base.html" %}
{% block html_lang %}{{ page.lang }}{% endblock %}
{% block title %}{{ page.title|striptags }} - {{ SITENAME|striptags }} {%endblock%}
{% block head %}
{{ super() }}
{% endblock %}
{% block content %}
<article>
<div class="prose dark:prose-dark md:prose-base lg:prose-lg hyphens-auto">
<h1 class="text-3xl md:text-5xl">{{ page.title }}</h1>
{{ page.content }}
</div>
</article>
{% endblock %}