Skip to content

Commit 79ad7ba

Browse files
do not reverse posts in tags
1 parent f6c64e2 commit 79ad7ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_layouts/tagpage.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
<div class="tag">
55
<h1>{{ page.title }}</h1>
66
<ul>
7-
{% assign taged_posts = site.posts | where: 'tags',page.tag | reverse %}
7+
{% assign taged_posts = site.posts | where: 'tags',page.tag %}
88
{% for post in taged_posts %}
99
<li><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a> ({{ post.date | date_to_rfc822 | date: "%-d %B %Y" }})<br>
1010
{% if post.synopsis %}{{ post.synopsis }}{% else %}{{ post.excerpt }}{% endif %}
1111
</li>
1212
{% endfor %}
1313
</ul>
1414
</div>
15-
<hr>
15+
<hr>

0 commit comments

Comments
 (0)