Fix HTML validation

This commit is contained in:
Oliver Davies 2024-09-15 20:33:54 +01:00
parent 93d5fdc30d
commit 27e6a726e3
2 changed files with 3 additions and 3 deletions

View file

@ -4,7 +4,7 @@
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="canonical" href="{{ site.url }}{{ page.url|trim('/', 'right') }}" />
<link rel="canonical" href="{{ site.url }}{{ page.url|trim('/', 'right') }}">
<title>{{ page.title }} - {{ site.name }}</title>
</head>
<body>
@ -15,7 +15,7 @@
{% block content %}{% endblock %}
{% endblock %}
<hr />
<hr>
<footer>
<p>This website is open source. <a href="{{ site.github.url }}/edit/main/source/{{ page.relative_pathname }}">Improve this page</a>.</p>

View file

@ -9,7 +9,7 @@
{% endblock %}
{% block content_wrapper %}
<time date="{{ page.date|date('c') }}">{{ page.date|date }}</time>
<time datetime="{{ page.date|date('c') }}">{{ page.date|date }}</time>
{% block content %}{% endblock %}