Move header/footer/main elements into child templates The <content> tag is not meant for normal HTML, but rather the Shadow DOM, therefore I replaced it with <main> For consistency's sake I moved <header> and <footer> into the child templates as well
Alan Pearce alan@alanpearce.eu
Wed, 26 Apr 2023 09:08:15 +0200
8 files changed, 24 insertions(+), 26 deletions(-)
M templates/base.html → templates/base.html
@@ -16,15 +16,9 @@ {% include "style.html" ignore missing -%} {% include "custom_head.html" ignore missing -%} </head> <body> - <header> - {% include "header.html" ignore missing -%} - </header> - <main> - {% block main %}{%- endblock -%} - </main> - <footer> - {% include "footer.html" ignore missing -%} - </footer> + {% include "header.html" ignore missing -%} + {% block main %}{%- endblock -%} + {% include "footer.html" ignore missing -%} {% include "custom_body.html" ignore missing -%} </body> </html>
M templates/header.html → templates/header.html
@@ -1,4 +1,6 @@-<a href="{{ config.base_url }}" class="title"> - <h2>{{ config.title }}</h2> -</a> -<nav>{% include "nav.html" %}</nav> +<header> + <a href="{{ config.base_url }}" class="title"> + <h2>{{ config.title }}</h2> + </a> + <nav>{% include "nav.html" %}</nav> +</header>
M templates/index.html → templates/index.html
@@ -1,7 +1,7 @@ {% extends "base.html" %} {% block main %} - <content> + <main> {{ section.content | safe }} - </content> + </main> {% endblock %}
M templates/page.html → templates/page.html
@@ -17,9 +17,9 @@ </i> </p> {%- endif %} {%- endif %} - <content> + <main> {{ page.content | safe }} - </content> + </main> <p> {%- if page.taxonomies %} {%- for name, taxon in page.taxonomies %}
M templates/section.html → templates/section.html
@@ -1,7 +1,7 @@ {% extends "base.html" %} {% block main %} - <content> + <main> {%- if taxonomy.term %} <h3 style="margin-bottom:0">Filtering for "{{ section.title }}"</h3> <small> @@ -34,5 +34,5 @@ <a href="{{ post.permalink }}">#{{ post.name }}</a> {% endfor %} </div> </small> - </content> + </main> {% endblock %}
M templates/taxonomy_list.html → templates/taxonomy_list.html
@@ -1,7 +1,7 @@ {% extends "base.html" %} {% block main %} - <content> + <main> <small> <div> {% set tags = get_taxonomy(kind="tags") %} @@ -10,5 +10,5 @@ <a href="{{ post.permalink }}">#{{ post.name }}</a> {% endfor %} </div> </small> - </content> + </main> {% endblock %}
M templates/taxonomy_single.html → templates/taxonomy_single.html
@@ -1,7 +1,7 @@ {% extends "base.html" %} {% block main %} - <content> + <main> {%- if taxonomy.term %} <h3 style="margin-bottom:0">Filtering for "{{ term.name }}"</h3> <small> @@ -26,5 +26,5 @@ No posts yet </li> {% endfor %} </ul> - </content> + </main> {% endblock %}