chiark / gitweb /
theme: remove unnecessary space.
authorVladimír Vondruš <mosra@centrum.cz>
Mon, 6 Nov 2017 16:55:20 +0000 (17:55 +0100)
committerVladimír Vondruš <mosra@centrum.cz>
Mon, 6 Nov 2017 17:10:49 +0000 (18:10 +0100)
pelican-theme/templates/base_blog.html

index b8a203e1e09fbb4ea2f4df8bf15fbf762d986425..5b153418726dd62a031403f0fd2e5575f1741034 100644 (file)
@@ -27,7 +27,7 @@
         <ul class="m-tagcloud">
           {% set max_articles_per_tag = tags|map(attribute='1')|map('length')|sort|last %}
           {% for tag, articles in tags|sort(attribute='0') %}
-          <li class="m-tag-{{ (5*(articles|length)/max_articles_per_tag)|round(0, 'ceil')|int }} "><a href="{{ tag.url|format_siteurl }}">{{ tag }}</a></li>
+          <li class="m-tag-{{ (5*(articles|length)/max_articles_per_tag)|round(0, 'ceil')|int }}"><a href="{{ tag.url|format_siteurl }}">{{ tag }}</a></li>
           {% endfor %}
         </ul>
       </div>
@@ -45,7 +45,7 @@
       <ul class="m-tagcloud">
         {% set max_articles_per_tag = tags|map(attribute='1')|map('length')|sort|last %}
         {% for tag, articles in tags|sort(attribute='0') %}
-        <li class="m-tag-{{ (5*(articles|length)/max_articles_per_tag)|round(0, 'ceil')|int }} "><a href="{{ tag.url|format_siteurl }}">{{ tag }}</a></li>
+        <li class="m-tag-{{ (5*(articles|length)/max_articles_per_tag)|round(0, 'ceil')|int }}"><a href="{{ tag.url|format_siteurl }}">{{ tag }}</a></li>
         {% endfor %}
       </ul>
     </nav>