fix: widget order

This commit is contained in:
Cory Dransfeldt 2024-05-02 20:45:31 -07:00
parent 64f42b8973
commit b633ae5bb1
No known key found for this signature in database
2 changed files with 3 additions and 2 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "13.6.2", "version": "13.6.3",
"description": "The source for my personal site. Built using 11ty.", "description": "The source for my personal site. Built using 11ty.",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -3,4 +3,5 @@ layout: default
--- ---
{% render "partials/home/now.liquid" status:status, artists:music.artists, books:books, tv:tv %} {% render "partials/home/now.liquid" status:status, artists:music.artists, books:books, tv:tv %}
{% render "partials/home/posts.liquid" icon: "star", title: "Featured", postData:collections.posts, postType: "featured" %} {% render "partials/home/posts.liquid" icon: "star", title: "Featured", postData:collections.posts, postType: "featured" %}
{% render "partials/home/posts.liquid" icon: "clock-2", title: "Recent posts", postData:collections.posts %} {% assign posts = collections.posts | reverse %}
{% render "partials/home/posts.liquid" icon: "clock-2", title: "Recent posts", postData:posts %}