diff --git a/src/_includes/blog.html b/src/_includes/blog.html index 2e28371..b784bcd 100644 --- a/src/_includes/blog.html +++ b/src/_includes/blog.html @@ -1,15 +1,14 @@
+ {% assign posts = site.categories.values | concat: site.categories.howto | sort:"date" | reverse %} - {% for post in site.categories.values %} - -
-
{% if post.image %}{% endif %}
-
-

{{ post.title }}

-

{{ post.date | date: '%B %d, %Y' }}

-

{{ post.description }}

-
-
+ {% for post in posts %} +
+
{% if post.image %}{% endif %}
+
+

{{ post.title }}

+

{{ post.date | date: '%B %d, %Y' }}

+

{{ post.description }}

+
+
{% endfor %} -