Skip to content

Commit 1706818

Browse files
committed
Move date to the right side
1 parent 7df513b commit 1706818

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tags.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77

88
<div class="archive-tags">
99
<a class="tag-item" href="#">all</a>
10-
{%- for tag in site.tags -%}
10+
{%- for tag in site.tags -%}
1111
{% capture name %}{{ tag | first }}{% endcapture %}
12-
<a class="tag-item" href="#{{name}}">{{ name }}</a>
12+
<a class="tag-item" href="#{{name}}">{{ name }}</a>
1313
{%- endfor -%}
1414
</div>
1515

@@ -18,10 +18,10 @@
1818
<h2 id="{{ name }}">{{ name | upcase }}</h2>
1919
{%- for post in site.tags[name] -%}
2020
<article class="post-item" id="results-container">
21-
<span class="post-item-date">{{ post.date | date: "%b %d, %Y" }}</span>
2221
<h3 class="post-item-title">
2322
<a href="{{ post.url }}">{{ post.title | escape }}</a>
24-
</h3>
23+
</h3>
24+
<span class="post-item-date">{{ post.date | date: "%b %d, %Y" }}</span>
2525
</article>
2626
{%- endfor -%}
27-
{%- endfor -%}
27+
{%- endfor -%}

0 commit comments

Comments
 (0)