fix: extra p tag
This commit is contained in:
parent
e03e3d6ba3
commit
6d82c73e2d
3 changed files with 8 additions and 8 deletions
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "24.7.17",
|
"version": "24.7.18",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "24.7.17",
|
"version": "24.7.18",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@cdransf/api-text": "^1.5.0",
|
"@cdransf/api-text": "^1.5.0",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "24.7.17",
|
"version": "24.7.18",
|
||||||
"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": {
|
||||||
|
|
|
@ -33,21 +33,21 @@ schema: movie
|
||||||
/>
|
/>
|
||||||
<div class="watching-meta">
|
<div class="watching-meta">
|
||||||
<p class="title"><strong>{{ movie.title }}</strong>{%- if movie.year and not movie.rating %} ({{ movie.year }}){%- endif -%}</p>
|
<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 }}
|
{{ movie.rating }}
|
||||||
{%- if movie.year %}
|
{%- if movie.year %}
|
||||||
({{ movie.year }})
|
({{ movie.year }})
|
||||||
{%- endif -%}
|
{%- endif -%}
|
||||||
{% endif -%}
|
|
||||||
</p>
|
</p>
|
||||||
|
{% endif -%}
|
||||||
{%- if movie.favorite -%}
|
{%- if movie.favorite -%}
|
||||||
<p class="sub-meta favorite">{% tablericon "heart" "Favorite" %} This is one of my favorite movies!</p>
|
<p class="sub-meta favorite">{% tablericon "heart" "Favorite" %} This is one of my favorite movies!</p>
|
||||||
{%- endif -%}
|
{%- endif -%}
|
||||||
{%- if movie.tattoo -%}
|
{%- if movie.tattoo -%}
|
||||||
<p class="sub-meta tattoo">{% tablericon "needle" "Tattoo" %} I have a tattoo inspired by this movie!</p>
|
<p class="sub-meta tattoo">{% tablericon "needle" "Tattoo" %} I have a tattoo inspired by this movie!</p>
|
||||||
{%- endif -%}
|
{%- 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>
|
</div>
|
||||||
{% if movie.review %}
|
{% if movie.review %}
|
||||||
{% render "partials/blocks/banners/warning.liquid", text: "There are probably spoilers after this banner — this is a warning about them." %}
|
{% render "partials/blocks/banners/warning.liquid", text: "There are probably spoilers after this banner — this is a warning about them." %}
|
||||||
|
|
Reference in a new issue