Skip to content

Commit 196c757

Browse files
committed
Update tag_index.html
1 parent d24d7d9 commit 196c757

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

_layouts/tag_index.html

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@
33
---
44
<h2 class="post_title">{.{page.title}}</h2>
55
<ul>
6-
{.% for post in site.posts %}
7-
{.% for tag in post.tags %}
8-
{.% if tag == page.tag %}
6+
{% for post in site.posts %}
7+
{% for tag in post.tags %}
8+
{% if tag == page.tag %}
99
<li class="archive_list">
10-
<time style="color:#666;font-size:11px;" datetime='{.{post.date | date: "%Y-%m-%d"}}'>{.{post.date | date: "%m/%d/%y"}}</time> <a class="archive_list_article_link" href='{.{post.url}}'>{.{post.title}}</a>
11-
<p class="summary">{.{post.summary}}
10+
<time style="color:#666;font-size:11px;" datetime='{{post.date | date: "%Y-%m-%d"}}'>{{post.date | date: "%m/%d/%y"}}</time> <a class="archive_list_article_link" href='{{post.url}}'>{{post.title}}</a>
11+
<p class="summary">{{post.summary}}
1212
<ul class="tag_list">
13-
{.% for tag in post.tags %}
14-
<li class="inline archive_list"><a class="tag_list_link" href="/tag/{.{ tag }}">{.{ tag }}</a></li>
15-
{.% endfor %}
13+
{% for tag in post.tags %}
14+
<li class="inline archive_list"><a class="tag_list_link" href="/tag/{.{ tag }}">{{ tag }}</a></li>
15+
{% endfor %}
1616
</ul>
1717
</li>
18-
{.% endif %}
19-
{.% endfor %}
20-
{.% endfor %}
18+
{% endif %}
19+
{% endfor %}
20+
{% endfor %}
2121
</ul>

0 commit comments

Comments
 (0)