Merge branch 'main' of github.com:cdransf/coryd.dev

This commit is contained in:
Cory Dransfeldt 2024-06-05 13:42:02 -07:00
commit 66fea26736
No known key found for this signature in database
5 changed files with 20 additions and 6 deletions

View file

@ -1,3 +1,3 @@
{
"timestamp": 1717546393692
"timestamp": 1717610634579
}

View file

@ -14005,5 +14005,16 @@
"https://social.lol/users/cory/statuses/112561120452810315"
],
"lastTootTimestamp": 1717546393683
},
"https://coryd.dev/books/0306922223": {
"id": "aHR0cHM6Ly9jb3J5ZC5kZXYvYm9va3MvMDMwNjkyMjIyMw==",
"title": "📖: Do What You Want (⭐⭐⭐⭐) ",
"url": "https://coryd.dev/books/0306922223",
"content_text": "📖: Do What You Want (⭐⭐⭐⭐) https://coryd.dev/books/0306922223",
"date_published": "Wed, 05 Jun 2024 00:00:00 GMT",
"toots": [
"https://social.lol/users/cory/statuses/112565330544895042"
],
"lastTootTimestamp": 1717610634570
}
}

View file

@ -48,6 +48,9 @@ schema: book
<p class="sub-meta"><a href="https://openlibrary.org/isbn/{{ book.isbn }}" title="View {{ book.title | escape }} on Open Library">View on Open Library</a></p>
</div>
</div>
{% if book.review %}{{ book.review | markdown }}{% endif %}
{% if book.description %}<p><em>{{ book.description }}</em></p>{% endif %}
{% if book.review %}
{{ book.review | markdown }}
<hr class="large-spacing" />
{% endif %}
{% if book.description %}<em>{{ book.description }}</em>{% endif %}
</article>

View file

@ -42,5 +42,5 @@ schema: movie
{{ movie.review | markdown }}
<hr class="large-spacing" />
{% endif %}
{% if movie.description %}<p><em>{{ movie.description }}</em></p>{% endif %}
{% if movie.description %}<em>{{ movie.description }}</em>{% endif %}
</article>

View file

@ -38,8 +38,8 @@ schema: show
<p class="sub-meta"><a href="https://themoviedb.org/tv/{{ show.tmdb_id }}" title="View {{ show.title | escape }} on TMDB">View on TMDB</a></p>
</div>
{% if show.review %}
<p>{{ show.review | markdown }}</p>
{{ show.review | markdown }}
<hr class="large-spacing" />
{% endif %}
{% if show.description %}<p><em>{{ show.description }}</em></p>{% endif %}
{% if show.description %}<em>{{ show.description }}</em>{% endif %}
</article>