Update tags.html
This commit is contained in:
parent
363e12cb06
commit
ce1a858d1e
23
tags.html
23
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> {{- 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> {{- tag -}}</h3>
|
||||
<ul class="post-list">
|
||||
<h2 id="{{- tag -}}" class="linked-section">
|
||||
<i class="fa fa-tag" aria-hidden="true"></i>
|
||||
{{- tag -}}
|
||||
</h2>
|
||||
<div class="post-list">
|
||||
{%- for post in site.tags[tag] -%}
|
||||
<li>
|
||||
<i class="fa fa-calendar-check-o" aria-hidden="true"></i>
|
||||
<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>
|
||||
<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>
|
||||
|
Loading…
Reference in New Issue
Block a user