Compile page

This commit is contained in:
Liliesh 2025-07-14 15:29:42 +02:00
parent 6e42243373
commit a1a2cd18e2
Signed by: liliesh
GPG key ID: 680387646C7BAE8E
12 changed files with 66 additions and 66 deletions

View file

@ -16,7 +16,7 @@
{% for tag in tags|sort(case_sensitive=true) %}
{%- if not loop.first and not loop.last %}, {% endif -%}
{%- if loop.last and not loop.first %} and {% endif %}
<a href="/tags/{{ tag }}.html">#{{ tag }}</a>
<a href="/blog/tags/{{ tag }}.html">#{{ tag }}</a>
{%- endfor %}
{% endif %}
</p>

View file

@ -11,8 +11,8 @@
{%- else %}
<meta name="description" content="{{ site.description }}">
{%- endif %}
<link rel="alternate" href="/atom.xml" type="application/atom+xml">
<link rel="stylesheet" href="/style.css" type="text/css">
<link rel="alternate" href="/blog//atom.xml" type="application/atom+xml">
<link rel="stylesheet" href="/blog/style.css" type="text/css">
<title>{% block title %}{% endblock %} | {{ site.description }}</title>
</head>
@ -23,9 +23,9 @@
<h2>{{ site.description }}</h2>
<ul>
<li><h2><a href="/">Blog</a></h2></li>
<li><h2><a href="/archive.html">Archive</a></h2></li>
<li><h2><a href="/tags/">Tags</a></h2></li>
<li><h2><a href="/about.html">About Me</a></h2></li>
<li><h2><a href="/blog/archive.html">Archive</a></h2></li>
<li><h2><a href="/blog/tags/">Tags</a></h2></li>
<li><h2><a href="/blog/about.html">About Me</a></h2></li>
</ul>
</nav>
</header>
@ -38,7 +38,7 @@
<footer>
<p>This website was built with <a href="https://github.com/venthur/blag">blag</a>.
<br>
Subscribe to the <a href="/atom.xml">atom feed</a>.
Subscribe to the <a href="/blog//atom.xml">atom feed</a>.
<br>
Contact me via
<a rel="me" href="https://wetdry.world/@techfoxxo">Fediverse</a>,

View file

@ -20,6 +20,6 @@
{% endfor %}
<p><a href="/archive.html">all articles...</a></p>
<p><a href="/blog/archive.html">all articles...</a></p>
{% endblock %}