diff --git a/tags.html b/tags.html
index 63243b6..b6d7af1 100644
--- a/tags.html
+++ b/tags.html
@@ -14,18 +14,21 @@ title: 'Tag Index'
     <a href="#{{- tag -}}" class="btn btn-primary tag-btn"><i class="fa fa-tag" aria-hidden="true"></i>&nbsp;{{- tag -}}</a>
 {%- endfor -%}
 
+<div id="full-tags-list">
 {%- for tag in tags_list -%}
-    <h3 id="{{- tag -}}"><i class="fa fa-tag" aria-hidden="true"></i>&nbsp;{{- tag -}}</h3>
-    <ul class="post-list">
+    <h2 id="{{- tag -}}" class="linked-section">
+        <i class="fa fa-tag" aria-hidden="true"></i>
+        &nbsp;{{- tag -}}
+    </h2>
+    <div class="post-list">
         {%- for post in site.tags[tag] -%}
-            <li>
-                <i class="fa fa-calendar-check-o" aria-hidden="true"></i>&nbsp;
-                <span class="entry-date">
-                    <time datetime="{{- post.date | date_to_xmlschema -}}">{{- post.date | date: "%B %d, %Y" -}}</time>
-                </span>
-                <i class="fa fa-newspaper-o" aria-hidden="true"></i>&nbsp;
+            <div class="tag-entry">
                 <a href="{{- site.url -}}{{- post.url -}}">{{- post.title -}}</a>
-            </li>
+                <div class="entry-date">
+                    <time datetime="{{- post.date | date_to_xmlschema -}}">{{- post.date | date: "%B %d, %Y" -}}</time>
+                </div>
+            </div>
         {%- endfor -%}
-    </ul>
+    </div>
 {%- endfor -%}
+</div>