begin actual theming

This commit is contained in:
lynxize 2024-11-12 22:09:20 -07:00
parent 51c0a6b30e
commit d995b97ad8
5 changed files with 26 additions and 10 deletions

View file

@ -21,7 +21,7 @@
</header>
<div id="new-site-warning">
Hey! This is a new version of my site rewritten from scratch!
<b>Hey!</b> This is a new version of my site rewritten from scratch!
I still don't really know what I'm doing with web dev, and this is still <i>very</i> WIP.
Stuff is still very broken/incomplete relative to the old site, but I'm working on it! (Hopefully)
</div>

View file

@ -6,7 +6,7 @@
</h1>
<ul>
{% for page in section.pages %}
<li><a href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
<li>{{ page.date }} <a href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
{% endblock content %}

View file

@ -4,6 +4,6 @@
<h1 class="title">
{{ page.title }}
</h1>
<p class="subtitle"><strong>{{ page.date }}</strong></p>
<p class="subtitle"><strong>{{ page.date }}</strong>{%if page.updated %} &ensp; Updated {{page.updated}}{% endif %}</p>
{{ page.content | safe }}
{% endblock content %}