29 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| ---
 | |
| layout: page
 | |
| title: Tag Archive
 | |
| description: "An archive of posts sorted by tag."
 | |
| comments: false
 | |
| breadcrumb: true
 | |
| ---
 | |
| 
 | |
| {% capture site_tags %}{% for tag in site.tags %}{{ tag | first }}{% unless forloop.last %},{% endunless %}{% endfor %}{% endcapture %}
 | |
| {% assign tags_list = site_tags | split:',' | sort %}
 | |
| 
 | |
| <ul class="small-block-grid-2 medium-block-grid-3 large-block-grid-5">
 | |
|   {% for item in (0..site.tags.size) %}{% unless forloop.last %}
 | |
|     {% capture this_word %}{{ tags_list[item] | strip_newlines }}{% endcapture %}
 | |
|   	<li><a href="{{ site.url }}/tag/{{ this_word | slugify }}/" class="tag"><span class="term">{{ this_word }}</span> (<span class="count">{{ site.tags[this_word].size }})</span></a></li>
 | |
|   {% endunless %}{% endfor %}
 | |
| </ul>
 | |
| 
 | |
| <!--{% for item in (0..site.tags.size) %}{% unless forloop.last %}
 | |
|   {% capture this_word %}{{ tags_list[item] | strip_newlines }}{% endcapture %}
 | |
| 	<article>
 | |
| 	<h2 id="{{ this_word }}" class="tag-heading">{{ this_word }}</h2>
 | |
| 		<ul>
 | |
|     {% for post in site.tags[this_word] %}{% if post.title != null %}
 | |
|       <li class="entry-title"><a href="{{ site.url }}{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></li>
 | |
|     {% endif %}{% endfor %}
 | |
| 		</ul>
 | |
| 	</article><!-- /.hentry -->
 | |
| <!-- {% endunless %}{% endfor %}-->
 |