60 lines
No EOL
2.3 KiB
HTML
60 lines
No EOL
2.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="/style.css">
|
|
<link rel="stylesheet" id="switcher-id">
|
|
<link rel="icon" href="/img/favicon.ico" type="image/x-icon" />
|
|
<link rel="alternate" type="application/rss+xml" title="RSS" href="/atom.xml">
|
|
</head>
|
|
<body>
|
|
{% include layout/sidebar.html %}
|
|
<article>
|
|
<h1> {{ page.title }} </h1>
|
|
<div class="toc">
|
|
{{ content | toc_only }}
|
|
</div>
|
|
{% unless page.url == "/" or page.url contains '/tag/' %}
|
|
<hr>
|
|
{% endunless %}
|
|
{% if page.toc %}
|
|
{% endif %}
|
|
{% if page.collection == "posts" %}
|
|
<p class="smolbox" style="margin: 0.5vw 1.5vw 0.5vw 1.5vw;">
|
|
published: {{ page.date | date: "%Y.%m.%d" }}<br>
|
|
tagged:
|
|
{% for tag in page.tags %}
|
|
<a class="post" href="/tag/{{tag}}">{{tag}}</a>{% unless forloop.last %}, {% endunless %}
|
|
{% endfor %}<br>
|
|
<author>
|
|
by mana
|
|
</author>
|
|
</p>
|
|
{% endif %}
|
|
{{ content | external_links }}
|
|
</article>
|
|
{% if page.show_blog_footer %}
|
|
<footer>
|
|
<a href="/blog/" title="back to blog posts">
|
|
<i class="ph ph-arrow-bend-down-left"></i>
|
|
</a>
|
|
<a href="#top" title="return to top">
|
|
<i class="ph ph-arrow-fat-lines-up"></i>
|
|
</a>
|
|
</footer>
|
|
{% endif %}
|
|
{% if page.show_footer %}
|
|
<footer><a href="#top" style="text-decoration: none;" title="return to top">
|
|
<i class="ph ph-arrow-line-up"></i></a>
|
|
</footer>
|
|
{% endif %}
|
|
</body>
|
|
<script src="/profile.js" defer></script>
|
|
<script src="https://unpkg.com/@phosphor-icons/web"></script>
|
|
<script src="/theme.js" defer></script>
|
|
<script src="/menu.js" defer></script>
|
|
{% if page.url contains "now"%}
|
|
<script src="/scrobble.js" defer></script>
|
|
<script src="https://status.cafe/current-status.js?name=mana" defer></script>
|
|
{% endif %}
|
|
</html> |