chore: consistent sort
This commit is contained in:
parent
16ceb7b0f9
commit
e777c0e162
3 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "coryd.dev",
|
||||
"version": "12.9.6",
|
||||
"version": "12.9.7",
|
||||
"description": "The source for my personal site. Built using 11ty.",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
|
|
@ -87,7 +87,7 @@ layout: default
|
|||
{% tablericon "books" "Books" %}
|
||||
Books
|
||||
</h2>
|
||||
{% assign bookData = books | bookStatus: 'started' %}
|
||||
{% assign bookData = books | bookStatus: 'started' | reverse %}
|
||||
{% render "partials/now/media-grid.liquid", data:bookData, shape: "vertical", count: 6 %}
|
||||
{% render "partials/recent-links.liquid", links:collections.links %}
|
||||
<h2 id="movies" class="now-header flex-centered">
|
||||
|
|
|
@ -3,7 +3,7 @@ title: Currently reading • Books
|
|||
layout: default
|
||||
permalink: "/books/index.html"
|
||||
---
|
||||
{%- assign bookData = books | bookStatus: 'started' -%}
|
||||
{%- assign bookData = books | bookStatus: 'started' | reverse -%}
|
||||
<h2 class="page-header">Currently reading</h2>
|
||||
{% render "partials/banners/rss.liquid", url: "https://feedpress.me/coryd-books", text: "Subscribe to my books feed or follow along on this page" %}
|
||||
<p>Here's what I'm reading at the moment. <a href="/books/want-to-read/">You can also take a look at what I'm planning to read (eventually).</a></p>
|
||||
|
|
Reference in a new issue