Fix content display on blog posts, fix background scaling (again), update styling for blog post content

This commit is contained in:
Froge 2025-07-20 22:32:50 +10:00
parent 3b17c1f479
commit 138440d973
Signed by: froge
GPG key ID: A825E09930271BFA
4 changed files with 42 additions and 21 deletions

View file

@ -18,11 +18,14 @@
</pre></a></div>
<div class="dotted-border"></div>
<main id="main-content">
<h2 id="blog-page-title">{{ page.title }}</h2>
<h5 class="blog-post-date">Published: {{ page.date }} || Last updated: {{ page.updated }}</h5>
<div class="blog-posts">
{% block content %} {% endblock %}
<div id="welcome-message">
<h2 id="blog-page-title">{{ page.title }}</h2>
<h6 class="blog-post-date">// Published: {{ page.date }} // Modified: {{ page.updated }} //</h6>
</div>
<div class="dotted-border"></div>
<div id="blog-post-content">
{{ page.content | safe }}
</div>
</main>
</body>