- {% assign sorted_featured = site.posts | where: "categories", "featured" | sort: 'date' | reverse %} + {% assign sorted_featured = featured_posts | sort: 'date' | reverse %} {% for post in sorted_featured %}
@@ -17,18 +20,16 @@ layout: default
{% endfor %}

Other Publications

- {% for post in paginator.posts %} - {% unless post.categories contains 'featured' %} -
-
- {{ post.date | date: "%Y-%m-%d" }} @ journal.lunar.sh - -
{{ post.excerpt }}
-
-
- {% endunless %} + {% for post in normal_posts %} +
+
+ {{ post.date | date: "%Y-%m-%d" }} @ journal.lunar.sh + +
{{ post.excerpt }}
+
+
{% endfor %}