website/templates/post.html
Ncam Gnrvngu e1d046ad6d
All checks were successful
/ build (push) Successful in 25s
/ reuse-compliance (push) Successful in 10s
/ build (pull_request) Successful in 25s
/ reuse-compliance (pull_request) Successful in 9s
improve fediverse integration
2025-06-14 17:47:27 +02:00

20 lines
471 B
HTML

{% extends "base.html" %}
{% block style %}
<link rel="stylesheet" href="/post/page.css"/>
{% endblock style %}
{% block title %}
{{ page.title }}
{% endblock title %}
{% block content %}
<h1 id="title">
{{ page.title }}
</h1>
<p id="subtitle">{{ page.date }}</p>
<div id="page_content">
{{ page.content | safe }}
</div>
{% if config.extra.mastodon_user %}
<meta name="fediverse:creator" content="{{ config.extra.mastodon_user}}">
{% endif %}
{% endblock content %}