chore: show year w/movie title if no rating; if rating move year + rating down and in line

This commit is contained in:
Cory Dransfeldt 2024-08-05 19:40:36 -07:00
parent 8da88d97b4
commit 2722fd40f4
No known key found for this signature in database
3 changed files with 7 additions and 7 deletions

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "21.4.8", "version": "21.4.9",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "21.4.8", "version": "21.4.9",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@cdransf/api-text": "^1.4.0", "@cdransf/api-text": "^1.4.0",

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "21.4.8", "version": "21.4.9",
"description": "The source for my personal site. Built using 11ty (and other tools).", "description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -32,14 +32,14 @@ schema: movie
height="720" height="720"
/> />
<div class="watching-meta"> <div class="watching-meta">
<p class="title"><strong>{{ movie.title }}</strong></p> <p class="title"><strong>{{ movie.title }}</strong>{%- if movie.year and not movie.rating %} ({{ movie.year }}){%- endif -%}</p>
<p> <p>
{%- if movie.rating -%} {%- if movie.rating -%}
{{ movie.rating }} {{ movie.rating }}
{%- if movie.year %}
({{ movie.year }})
{%- endif -%}
{% endif -%} {% endif -%}
{%- if movie.year %}
({{ movie.year }})
{%- endif -%}
</p> </p>
{% if movie.lastWatched %}<p class="sub-meta">Last watched on {{ movie.lastWatched | date: "%B %e, %Y" }}</p>{% endif %} {% if movie.lastWatched %}<p class="sub-meta">Last watched on {{ movie.lastWatched | date: "%B %e, %Y" }}</p>{% endif %}
<p class="sub-meta"><a href="https://themoviedb.org/movie/{{ movie.id }}" title="View {{ movie.title | escape }} on TMDB">View on TMDB</a></p> <p class="sub-meta"><a href="https://themoviedb.org/movie/{{ movie.id }}" title="View {{ movie.title | escape }} on TMDB">View on TMDB</a></p>