chore: styles
This commit is contained in:
parent
b93a76a0bb
commit
8179e5159d
5 changed files with 5 additions and 11 deletions
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "coryd.dev",
|
||||
"version": "1.7.2",
|
||||
"version": "1.7.3",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "coryd.dev",
|
||||
"version": "1.7.2",
|
||||
"version": "1.7.3",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@cdransf/api-text": "^1.5.0",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "coryd.dev",
|
||||
"version": "1.7.2",
|
||||
"version": "1.7.3",
|
||||
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
||||
"type": "module",
|
||||
"engines": {
|
||||
|
|
|
@ -17,7 +17,6 @@
|
|||
<li><a href="{{ artist.url }}">{{ artist.name }}</a>{%- if artist.total_plays > 0 -%}: <strong class="highlight-text">{{ artist.total_plays }} {{ playLabel }}</strong>{%- endif -%}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<hr />
|
||||
{%- endif -%}
|
||||
{% comment %} render related books {% endcomment %}
|
||||
{%- if books -%}
|
||||
|
@ -30,7 +29,6 @@
|
|||
<li><a href="{{ book.url }}">{{ book.title }}</a> by {{ book.author }}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<hr />
|
||||
{%- endif -%}
|
||||
{% comment %} render related genres {% endcomment %}
|
||||
{%- if genres -%}
|
||||
|
@ -43,7 +41,6 @@
|
|||
<li><a href="{{ genre.url }}">{{ genre.name }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<hr />
|
||||
{%- endif -%}
|
||||
{% comment %} render related movies {% endcomment %}
|
||||
{%- if movies -%}
|
||||
|
@ -56,7 +53,6 @@
|
|||
<li><a href="{{ movie.url }}">{{ movie.title }}</a> ({{ movie.year }})</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<hr />
|
||||
{%- endif -%}
|
||||
{% comment %} render related posts {% endcomment %}
|
||||
{%- if posts -%}
|
||||
|
@ -69,7 +65,6 @@
|
|||
<li><a href="{{ post.url }}">{{ post.title }}</a> ({{ post.date | date: "%B %e, %Y" }})</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<hr />
|
||||
{%- endif -%}
|
||||
{% comment %} render related shows {% endcomment %}
|
||||
{%- if shows -%}
|
||||
|
@ -82,6 +77,5 @@
|
|||
<li><a href="{{ show.url }}">{{ show.title }}</a> ({{ show.year }})</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<hr />
|
||||
{%- endif -%}
|
||||
{% if artists or books or genres or movies or posts or shows %}</div>{% endif %}
|
|
@ -1,3 +1,3 @@
|
|||
<script type="module" src="/assets/scripts/components/youtube-video-element.js?v={% appVersion %}"></script>
|
||||
<style>youtube-video{aspect-ratio:16/9;width:100%}</style>
|
||||
<style>youtube-video{aspect-ratio:16/9;width:100%;display:flex}</style>
|
||||
<youtube-video controls src="{{ url }}"></youtube-video>
|
|
@ -48,6 +48,6 @@ schema: blog
|
|||
{% render "partials/blocks/associated-media.liquid", genres:post.genres %}
|
||||
{% render "partials/blocks/associated-media.liquid", movie:post.movies %}
|
||||
{% render "partials/blocks/associated-media.liquid", shows:post.shows %}
|
||||
{% render "partials/blocks/banners/coffee.liquid" %}
|
||||
</div>
|
||||
{% render "partials/blocks/banners/coffee.liquid" %}
|
||||
</article>
|
Reference in a new issue