Changes from today's live stream

https://www.youtube.com/live/_Y9ofkjVYR8
This commit is contained in:
Oliver Davies 2024-09-06 18:38:37 +01:00
parent 55c4c32887
commit 1bb48e633e
9 changed files with 1062 additions and 31 deletions

View file

@ -5,20 +5,23 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ page.title }} - {{ site.name }}</title>
<link rel="stylesheet" href="/dist/app.css">
</head>
<body>
<body class="dark:bg-black dark:text-white">
{% block body %}
<h1>{% block page_title %}{{ page.title }}{% endblock %}</h1>
<div class="mx-auto max-w-3xl">
<h1 class="text-4xl font-bold dark:text-white">{% block page_title %}{{ page.title }}{% endblock %}</h1>
{% block content_wrapper %}
{% block content %}{% endblock %}
{% endblock %}
{% block content_wrapper %}
{% block content %}{% endblock %}
{% endblock %}
<hr />
<hr class="my-10" />
<footer>
<p>This website is open source. <a href="{{ site.github.url }}/edit/main/source/{{ page.relative_pathname }}">Improve this page</a>.</p>
</footer>
{% endblock %}
<footer class="mb-6">
<p>This website is open source. <a class="text-primary underline hover:no-underline" href="{{ site.github.url }}/edit/main/source/{{ page.relative_pathname }}">Improve this page</a>.</p>
</footer>
{% endblock %}
<div>
</body>
</html>