blog.hatebit.org/theme/templates/page.html
2025-01-22 17:25:01 +01:00

30 lines
776 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "partials/_base.html" %}
{# Page title: #}
{% block title %}{{ page.title|lower }} {{ SITENAME|lower }}{% endblock %}
{# Page metadata: #}
{% block meta %}
<meta name="description" content="" />
<link rel="canonical" href="{{ SITEURL }}/{{ page.url }}" />
{% endblock %}
{# OpenGraph metadata: #}
{% block opengraph %}
<meta property="og:type" content="article" />
<meta property="og:url" content="{{ SITEURL }}/{{ page.url }}" />
<meta property="og:title" content="{{ page.title|lower }} {{ SITENAME|lower }}" />
<meta property="og:image" content="" />
<meta property="og:description" content="" />
{% endblock %}
{# Page content: #}
{% block content %}
<h1>{{ page.title }}</h1>
<article role="article">
{{ page.content }}
</article>
{% endblock %}