summaryrefslogtreecommitdiff
path: root/_layouts
diff options
context:
space:
mode:
authortekkub <tekkub@gmail.com>2009-07-27 02:00:42 -0600
committertekkub <tekkub@gmail.com>2009-07-27 02:00:42 -0600
commitbe6d05dde2cb32de5d3a164e1ac0e84a4f19a1d4 (patch)
tree3d53d728bb44084accc093d4e95807ae3ec24783 /_layouts
parent513f0b52d767b60286ad2bc696670636afbf4d0b (diff)
Try without reversed
Diffstat (limited to '_layouts')
-rw-r--r--_layouts/default.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/_layouts/default.html b/_layouts/default.html
index 71ba56d..0d7eacf 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -58,7 +58,7 @@ sidebar_cats:
{% for cat in (page.sidebar_cats) %}
<h3 id="{{cat}}">{{ cat | capitalize }}</h3>
<dl id="{{cat}}">
- {% for post in site.posts reversed %}{% if post.categories contains cat %}
+ {% for post in site.posts %}{% if post.categories contains cat %}
<dt><a href="{{ post.url }}">{{ post.title }}</a></dt>
<dd>{{ post.description }}</dd>
{% endif %}{% endfor %}