Sha256: 99381155a8c54d834ac08d5a744d9cf01a394703a4c09be9acdca9202019958e
Contents?: true
Size: 1.19 KB
Versions: 1
Compression:
Stored size: 1.19 KB
Contents
--- layout: page title: 'Tag Index' --- {% assign date_format = site.date_format | default: "%B %-d, %Y" %} {%- capture site_tags -%} {%- for tag in site.tags -%} {{- tag | first -}}{%- unless forloop.last -%},{%- endunless -%} {%- endfor -%} {%- endcapture -%} {%- assign tags_list = site_tags | split:',' | sort -%} {%- for tag in tags_list -%} <a href="#{{- tag -}}" class="btn btn-primary tag-btn"><i class="fas fa-tag" aria-hidden="true"></i> {{- tag -}} ({{site.tags[tag].size}})</a> {%- endfor -%} <div id="full-tags-list"> {%- for tag in tags_list -%} <h2 id="{{- tag -}}" class="linked-section"> <i class="fas fa-tag" aria-hidden="true"></i> {{- tag -}} ({{site.tags[tag].size}}) </h2> <div class="post-list"> {%- for post in site.tags[tag] -%} <div class="tag-entry"> <a href="{{ post.url | relative_url }}">{{- post.title | strip_html -}}</a> <div class="entry-date"> <time datetime="{{- post.date | date_to_xmlschema -}}">{{- post.date | date: date_format -}}</time> </div> </div> {%- endfor -%} </div> {%- endfor -%} </div>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
beautiful-jekyll-theme-6.0.1 | tags.html |