-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathtags.html
More file actions
61 lines (53 loc) · 1.59 KB
/
tags.html
File metadata and controls
61 lines (53 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
---
layout: page
title: Tags
permalink: /tags/index.html
description: "An archive of posts sorted by tag."
---
{% for tag in site.tags %}
<h4 id="{{ tag[0] }}">{{ tag[0] }}</h4>
<hr />
{% assign pages_list = tag[1] %}
{% for post in pages_list %}
{% if post.title != null %}
{% if group == null or group == post.group %}
<article class="post type-post status-publish format-standard hentry clearfix">
<header>
<h3 class="entry-title">
<a href="{{ site.url }}{{ post.url }}">
{{ post.title }}
</a>
</h3><!-- /.entry-title -->
<div class="post-meta">
<span class="post-date">
{% if post.author_twitter %}
<a href="http://twitter.com/{{post.author_twitter}}" target="_blank">
<img src="http://twitter.com/api/users/profile_image/{{post.author_twitter}}"/>
{{ post.author_name }}
</a>
{% else %}
{{ post.author_name }}
{% endif %}
</span>
</br>
<span class="post-date">
{{ post.date | date: "%B %e, %Y" }}
</span><!-- /.post-date -->
{% if site.disqus_shortname and post.comments %}
|
<span class="comment-link">
<a href="#disqus_thread">Comment</a>
</span><!-- /.comment-link -->
{% endif %}
</div><!-- /.post-meta -->
</header>
<div class="entry-content clearfix">
{{ post.excerpt }}
</div><!--/ .entry-content -->
</article>
{% endif %}
{% endif %}
{% endfor %}
{% assign pages_list = nil %}
{% assign group = nil %}
{% endfor %}