add links

This commit is contained in:
mtgmonkey
2025-08-02 07:48:01 -04:00
parent 3b7b378d30
commit c6714dfec6
6 changed files with 25 additions and 1 deletions

View File

@@ -7,6 +7,9 @@
</head>
<body>
<section class="section">
<div class="header">
<h2><a href="https://blog.mtgmonkey.net">Andromeda's Blog</a></h2>
</div>
<div class="container">
{% block content %} {% endblock content %}
</div>

View File

@@ -5,4 +5,5 @@
This is Andromeda's blog.
</h1>
<p><a href="{{ get_url(path='@/daily/_index.md') }}">Daily Posts</a></p>
<p><a href="{{ get_url(path='@/links.md') }}">Links</a></p>
{% endblock content %}

5
templates/links.html Normal file
View File

@@ -0,0 +1,5 @@
{% extends "base.html" %}
{% block content %}
{{ page.content | safe }}
{% endblock content %}