fix: widget order
This commit is contained in:
parent
64f42b8973
commit
b633ae5bb1
2 changed files with 3 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "coryd.dev",
|
||||
"version": "13.6.2",
|
||||
"version": "13.6.3",
|
||||
"description": "The source for my personal site. Built using 11ty.",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
|
|
@ -3,4 +3,5 @@ layout: default
|
|||
---
|
||||
{% 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: "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 %}
|
Reference in a new issue