chore: book meta

This commit is contained in:
Cory Dransfeldt 2024-05-17 13:39:15 -07:00
parent 42ea508d46
commit d680a11905
No known key found for this signature in database
4 changed files with 17 additions and 19 deletions

View file

@ -206,8 +206,9 @@ export default {
} }
if (item.type === 'book') { if (item.type === 'book') {
normalized['alt'] = `${item['title']} by ${item['authors']}` normalized['alt'] = `${item['title']} by ${item['authors']}`
normalized['subtext'] = `${item['percentage']} finished` normalized['title'] = `${item['title']} by ${item['authors']}`
normalized['percentage'] = item['percentage'] normalized['rating'] = item['rating']
if (item['rating']) normalized['subtext'] = item['rating']
} }
if (item.type === 'tv') { if (item.type === 'tv') {
normalized['title'] = item['title'] normalized['title'] = item['title']

4
package-lock.json generated
View file

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

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "15.4.2", "version": "15.4.3",
"description": "The source for my personal site. Built using 11ty.", "description": "The source for my personal site. Built using 11ty.",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -3,21 +3,18 @@
<div class="media-grid {% if shape == 'square' %}square{% else %}vertical{% endif %}"> <div class="media-grid {% if shape == 'square' %}square{% else %}vertical{% endif %}">
{% for item in media limit: count %} {% for item in media limit: count %}
{% assign alt = item.alt | strip | escape %} {% assign alt = item.alt | strip | escape %}
{% assign hasMeta = item.type != 'book' %}
<a href="{{ item.url | stripUtm }}" title="{{ alt }}"> <a href="{{ item.url | stripUtm }}" title="{{ alt }}">
<div class="item-wrapper{% if hasMeta %} shadow{% endif %}"> <div class="item-wrapper shadow">
{% if hasMeta %} <div class="meta-text">
<div class="meta-text"> {% if item.title %}
{% if item.title %} <div class="header">{{ item.title }}</div>
<div class="header">{{ item.title }}</div> {% endif %}
{% endif %} {% if item.subtext %}
{% if item.subtext %} <div class="subheader">
<div class="subheader"> {{ item.subtext }}
{{ item.subtext }} </div>
</div> {% endif %}
{% endif %} </div>
</div>
{% endif %}
{%- capture loadingStrategy -%} {%- capture loadingStrategy -%}
{%- if loading -%}{{ loading }}{%- else -%}lazy{%- endif -%} {%- if loading -%}{{ loading }}{%- else -%}lazy{%- endif -%}
{%- endcapture -%} {%- endcapture -%}