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

Other Publications

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