diff options
author | Alan Pearce | 2023-06-23 14:04:35 +0200 |
---|---|---|
committer | Alan Pearce | 2023-06-23 14:04:53 +0200 |
commit | c05bd8303b53d26e5b283bc71b0153f221dca962 (patch) | |
tree | d9b2431e0c5c589fae06acd3622cccf1b5347e92 /themes/bear/templates/taxonomy_single.html | |
parent | 19701d1646fcf8f95c51bab60ee4aadc23ece2b5 (diff) | |
download | website-c05bd8303b53d26e5b283bc71b0153f221dca962.tar.lz website-c05bd8303b53d26e5b283bc71b0153f221dca962.tar.zst website-c05bd8303b53d26e5b283bc71b0153f221dca962.zip |
Improve HTML indentation
Diffstat (limited to 'themes/bear/templates/taxonomy_single.html')
-rw-r--r-- | themes/bear/templates/taxonomy_single.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/themes/bear/templates/taxonomy_single.html b/themes/bear/templates/taxonomy_single.html index 2798f94..5ee2b88 100644 --- a/themes/bear/templates/taxonomy_single.html +++ b/themes/bear/templates/taxonomy_single.html @@ -6,7 +6,7 @@ <link rel="alternate" type={% if config.feed_filename == "atom.xml" %}"application/atom+xml"{% else %}"application/rss+xml"{% endif %} title="{% if term %}{{ term.name | title }}{% else %}{{ section.title | title }}{% endif %}" href="{{ get_url(path=rss_path) | safe }}"> {%- endblock -%} -{% block main %} +{% block main -%} <main id="content"> {%- if taxonomy.term %} <h3 style="margin-bottom:0">Filtering for "{{ term.name }}"</h3> @@ -15,7 +15,7 @@ </small> {%- endif %} <ul class="blog-posts"> - {% for page in term.pages %} + {%- for page in term.pages %} <li> <span> <time datetime='{{ page.date | date(format='%+') }}' pubdate> @@ -28,7 +28,7 @@ <li> No posts yet </li> - {% endfor %} + {%- endfor %} </ul> </main> {% endblock %} |