From 08b8a7a6031db35d6e0bf7e0643f3168a49bc9e4 Mon Sep 17 00:00:00 2001 From: Di <didoesdigital+git@gmail.com> Date: Thu, 20 Feb 2025 22:00:18 +1000 Subject: [PATCH] Add <main> landmark to page template --- v2/templates/page.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/v2/templates/page.html b/v2/templates/page.html index 9774fcb..77f8ebc 100644 --- a/v2/templates/page.html +++ b/v2/templates/page.html @@ -41,6 +41,7 @@ {% endfor %} </nav> +<main> <article id="{{ page.slug }}"> <h2> <a href="{{ page.permalink }}">{{ page.title }}</a> @@ -80,4 +81,5 @@ </p> </div> </article> +</main> {% endblock %}