Revert "Changes from today's live stream"

This reverts commit 1bb48e633e.
This commit is contained in:
Oliver Davies 2024-09-10 09:59:24 +01:00
parent c4af8a7475
commit 707cd60ead
9 changed files with 31 additions and 1062 deletions

View file

@ -9,37 +9,27 @@
{% endblock %}
{% block content_wrapper %}
<div class="my-4">
<time date="{{ page.date|date('c') }}">{{ page.date|date }}</time>
</div>
<time date="{{ page.date|date('c') }}">{{ page.date|date }}</time>
<div class="markdown">
{% block content %}{% endblock %}
</div>
{% block content %}{% endblock %}
<div class="mt-10 gap-10 grid">
{% if page.links is not empty %}
<section>
<h2 class="text-lg font-bold">Links</h2>
{% if page.links is not empty %}
<h2>Links</h2>
<ul class="list-disc pl-4">
{% for url in page.links %}
<li><a class="text-primary underline hover:no-underline" href="{{ url }}">{{ url }}</a></li>
{% endfor %}
</ul>
</section>
{% endif %}
<ul>
{% for url in page.links %}
<li><a href="{{ url }}">{{ url }}</a></li>
{% endfor %}
</ul>
{% endif %}
{% if page.tags is not empty %}
<section>
<h2 class="text-lg font-bold">Tags</h2>
{% if page.tags is not empty %}
<h2>Tags</h2>
<ul class="list-disc pl-4">
{% for tag in page.tags|sort %}
<li>{{ tag }}</li>
{% endfor %}
</ul>
</section>
{% endif %}
</div>
<ul>
{% for tag in page.tags|sort %}
<li>{{ tag }}</li>
{% endfor %}
</ul>
{% endif %}
{% endblock %}