fix: extra p tag

This commit is contained in:
Cory Dransfeldt 2024-09-10 21:34:54 -07:00
parent e03e3d6ba3
commit 6d82c73e2d
No known key found for this signature in database
3 changed files with 8 additions and 8 deletions

4
package-lock.json generated
View file

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

View file

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

View file

@ -33,21 +33,21 @@ schema: movie
/>
<div class="watching-meta">
<p class="title"><strong>{{ movie.title }}</strong>{%- if movie.year and not movie.rating %} ({{ movie.year }}){%- endif -%}</p>
<p>
{%- if movie.rating -%}
{%- if movie.rating -%}
<p>
{{ movie.rating }}
{%- if movie.year %}
({{ movie.year }})
{%- endif -%}
{% endif -%}
</p>
</p>
{% endif -%}
{%- if movie.favorite -%}
<p class="sub-meta favorite">{% tablericon "heart" "Favorite" %} This is one of my favorite movies!</p>
{%- endif -%}
{%- if movie.tattoo -%}
<p class="sub-meta tattoo">{% tablericon "needle" "Tattoo" %} I have a tattoo inspired by this movie!</p>
{%- endif -%}
{% 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 -%}
</div>
{% if movie.review %}
{% render "partials/blocks/banners/warning.liquid", text: "There are probably spoilers after this banner — this is a warning about them." %}