Lots of css changes, html description, whathaveyou

This commit is contained in:
Bun 2025-07-05 02:24:15 -04:00
parent 2a815643c0
commit 34e7f5aa95
24 changed files with 558 additions and 60 deletions

View file

@ -2,7 +2,19 @@
{% block content %}
<h1 class="blocktitle">
{{ section.title }}
{%- if section.title %}
{{ section.title }}
{%- endif -%}
{%- if page.title %}
{{ page.title }}
{%- endif -%}
</h1>
{{ section.content | safe }}
{%- if section.content %}
{{ section.content | safe }}
{%- endif -%}
{%- if page.content %}
{{ page.content | safe }}
{%- endif -%}
{% endblock content %}