about summary refs log tree commit diff stats
path: root/templates/section.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/section.html')
-rw-r--r--templates/section.html14
1 files changed, 6 insertions, 8 deletions
diff --git a/templates/section.html b/templates/section.html
index a389c93..a3520b5 100644
--- a/templates/section.html
+++ b/templates/section.html
@@ -13,7 +13,7 @@
         <li>
           <span>
             <i>
-              <time datetime='{{ page.date | date(format='%+') }}' pubdate>
+              <time datetime="{{ page.date | date(format='%+') }}" pubdate>
                 {{ page.date | date(format=config.extra.date_format) }}
               </time>
             </i>
@@ -24,13 +24,11 @@
         <li>{{ trans(key="no_posts", lang=lang) }}</li>
       {%- endfor -%}
     </ul>
-    <small>
-      <div>
-        {%- set tags = get_taxonomy(kind="tags", lang=lang) %}
-        {%- for post in tags.items %}
+    <div class="tags">
+      {%- set tags = get_taxonomy(kind="tags", lang=lang) %}
+      {%- for post in tags.items %}
         <a href="{{ post.permalink }}">#{{ post.name }}</a>&nbsp;
-        {%- endfor %}
-      </div>
-    </small>
+      {%- endfor %}
+    </div>
   </main>
 {% endblock %}