2025-04-07 20:09:47 +02:00

47 lines
1.3 KiB
HTML

<!doctype html>
<html class = "no-js" lang="en">
<head>
{% include default_head_tags.html%}
{% if page.commentid %}
<script src="/assets/js/jquery-3.7.0.min.js"></script>
<script src="/assets/js/mastodon.js"></script>
<script defer>getComments("{{page.commentid}}");</script>
{% endif %}
</head>
<body>
{% include header.html %}
<main>
<article class="h-entry">
<section class="header">
<section class="title-icon-container">
<h1 class = "p-name highlights">{{ page.title }}</h1>
<div class = "icon-container"></div>
</section>
<hr class="byline">
</section>
<section class="byline-time">
<section class="byline">
{{page.excerpt}}
</section>
<time class="dt-label dt-published" datetime="{{ page.date | date_to_xmlschema }}">{{ page.date | date_to_string }}</time>
</section>
<div class="e-content">
{{ content }}
</div>
</article>
{% if page.commentid %}
<div id="comments" class="comments">
<h2>Comments</h2>
{% endif %}
</div>
</main>
{% include footer.html %}
</body>
</html>