all repos — website @ 65800cdbeadc21ee4a469361d6b70c2189a0fe0f

My website

Improve whitespacing in HTML
Alan Pearce alan@alanpearce.eu
Wed, 26 Apr 2023 13:14:30 +0200
commit

65800cdbeadc21ee4a469361d6b70c2189a0fe0f

parent

111c6b45bfe83c9ff3cee9081392d9a645af8160

M templates/base.htmltemplates/base.html
@@ -5,7 +5,7 @@ <meta charset="utf-8">   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   {% include "favicon.html" ignore missing -%}
   <title>{%- block title %}{{ config.title }}{%- endblock %}</title>
-  {% include "seo_tags.html" ignore missing -%}
+  {% include "seo_tags.html" ignore missing %}
   <meta name="referrer" content="no-referrer-when-downgrade">
   {%- if config.generate_feed %}
   {% block rss -%}
M templates/footer.htmltemplates/footer.html
@@ -1,5 +1,5 @@ <footer>
-  {% if not config.extra.hide_made_with_line %}
+  {%- if not config.extra.hide_made_with_line %}
     Made with <a href="https://codeberg.org/alanpearce/zola-bearblog">Zola ʕ•ᴥ•ʔ Bear</a>
-  {% endif %}
+  {%- endif %}
 </footer>
M templates/header.htmltemplates/header.html
@@ -2,5 +2,7 @@ <header>   <a href="{{ config.base_url }}" class="title">
     <h2>{{ config.title }}</h2>
   </a>
-  <nav>{% include "nav.html" %}</nav>
+  <nav>
+    {% include "nav.html" %}
+  </nav>
 </header>
M templates/nav.htmltemplates/nav.html
@@ -7,4 +7,4 @@ {%- else %}       <a href="{{ get_url(path=item.url )}}">{{ item.name }}</a>
     {%- endif %}
   {%- endfor %}
-{%- endif %}
+{%- endif -%}
M templates/page.htmltemplates/page.html
@@ -1,8 +1,6 @@ {% extends "base.html" %}
 
-{% block title %}
-{{ page.title }} | {{ super() }}
-{% endblock %}
+{% block title %}{{ page.title }} | {{ super() }}{% endblock %}
 
 {% block main %}
   {%- if not page.extra.menu %}
@@ -11,14 +9,14 @@ {%- if page.date %}       <p>
         <i>
           <time datetime='{{ page.date | date(format='%+') }}' pubdate>
-            {{ page.date | date(format=config.extra.date_format) }}
+            {{- page.date | date(format=config.extra.date_format) -}}
           </time>
         </i>
       </p>
     {%- endif %}
   {%- endif %}
   <main>
-    {{ page.content | safe }}
+    {{ page.content | indent | safe }}
   </main>
   <p>
     {%- if page.taxonomies %}