chore: dry up templates

This commit is contained in:
Cory Dransfeldt 2024-10-26 09:04:26 -07:00
parent 05ab78c861
commit 5f60579311
No known key found for this signature in database
8 changed files with 44 additions and 60 deletions

4
package-lock.json generated
View file

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

View file

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

View file

@ -18,7 +18,7 @@
margin: 0;
}
.pagination span.disabled svg[data-tablericon-name^="arrow-"] {
.pagination a.disabled svg[data-tablericon-name^="arrow-"] {
cursor: not-allowed;
stroke: var(--gray-medium);
stroke-width: var(--stroke-width-default);

View file

@ -1,11 +1,9 @@
{%- capture updateTime -%}
{%- if updated == "now" -%}
{{ 'now' | date: "%B %-d, %l:%M %P", "America/Los_Angeles" }}
{%- elsif page.updated -%}
{{ page.updated | date: "%B %-d, %l:%M %P", "America/Los_Angeles" }}
{%- endif -%}
{%- endcapture -%}
{%- assign updateTime = "" -%}
{%- if updated == "now" -%}
{%- assign updateTime = 'now' | date: "%B %-d, %l:%M %P", "America/Los_Angeles" -%}
{%- elsif page.updated -%}
{%- assign updateTime = page.updated | date: "%B %-d, %l:%M %P", "America/Los_Angeles" -%}
{%- endif -%}
<!doctype html>
<html lang="{{ globals.lang }}">
<head>

View file

@ -1,5 +1,4 @@
{% assign media = artists | concat: books | concat: genres | concat: movies | concat: posts | concat: shows %}
{% if media.size > 0 %}
<div class="associated-media">
{% assign sections =
@ -10,14 +9,12 @@
"posts:article:article:Related post(s)," | append:
"shows:device-tv-old:tv:Related show(s)"
| split: "," %}
{% for section in sections %}
{% assign parts = section | split: ":" %}
{% assign key = parts[0] %}
{% assign icon = parts[1] %}
{% assign css_class = parts[2] %}
{% assign label = parts[3] %}
{% case key %}
{% when "artists" %} {% assign items = artists %}
{% when "books" %} {% assign items = books %}
@ -26,7 +23,6 @@
{% when "posts" %} {% assign items = posts %}
{% when "shows" %} {% assign items = shows %}
{% endcase %}
{% if items and items.size > 0 %}
<p id="{{ key }}" class="{{ css_class }}">
{% tablericon icon %}

View file

@ -1,9 +1,9 @@
<section class="main-title">
<h1>
{%- if page.url != '/' -%}
<a href="/" tabindex="0">{{ globals.site_name }}</a>
{%- else -%}
{%- if page.url == '/' -%}
{{ globals.site_name }}
{%- else -%}
<a href="/" tabindex="0">{{ globals.site_name }}</a>
{%- endif -%}
</h1>
{% render "partials/nav/menu.liquid", page:page, nav:nav %}

View file

@ -1,16 +1,17 @@
{%- assign fullUrl = globals.url | append: page.url -%}
{%- assign pageTitle = globals.site_name -%}
{%- assign pageDescription = globals.site_description -%}
{%- assign pageTitle = title | default: globals.site_name -%}
{%- assign pageDescription = page.description | default: description | default: globals.site_description -%}
{%- assign ogImage = globals.cdn_url | append: globals.avatar -%}
{%- case schema -%}
{%- when 'blog' -%}
{%- assign pageTitle = post.title -%}
{%- assign pageDescription = post.description | markdown | strip_html | default: globals.site_description -%}
{%- when 'books' or 'books-year' -%}
{%- when 'books', 'books-year' -%}
{%- assign featuredBook = books.all | filterBooksByStatus: 'started' | reverse | first -%}
{%- assign ogImage = globals.cdn_url | append: featuredBook.grid.image -%}
{%- when 'books-year' -%}
{%- assign pageTitle = year.value | append: ' / Books / ' | append: globals.site_name -%}
{%- if schema == 'books-year' -%}
{%- assign pageTitle = year.value | append: ' / Books / ' | append: globals.site_name -%}
{%- endif -%}
{%- when 'music' -%}
{%- assign ogImage = globals.cdn_url | append: page.image -%}
{%- when 'music-index' -%}
@ -20,28 +21,14 @@
{%- assign pageTitle = 'Music / ' | append: page.title | append: ' / ' | append: globals.site_name -%}
{%- when 'page' -%}
{%- assign pageTitle = page.title | append: ' / ' | append: globals.site_name -%}
{%- when 'watching' or 'favorite-movies' -%}
{%- when 'watching', 'favorite-movies' -%}
{%- assign featuredMovie = movies.recentlyWatched | first -%}
{%- assign ogImage = globals.cdn_url | append: featuredMovie.grid.backdrop -%}
{%- when 'watching-shows' or 'favorite-shows' -%}
{%- when 'watching-shows', 'favorite-shows' -%}
{%- assign featuredShow = tv.recentlyWatched | first -%}
{%- assign ogImage = globals.cdn_url | append: featuredShow.grid.backdrop -%}
{%- else -%}
{%- assign pageTitle = globals.site_name -%}
{%- endcase -%}
{% if title %}
{%- assign pageTitle = title | append: ' / ' | append: globals.site_name -%}
{% endif %}
{%- if page.description -%}
{%- assign pageDescription = page.description -%}
{%- elsif description -%}
{%- assign pageDescription = description -%}
{%- endif -%}
{%- assign escapedPageDescription = pageDescription | escape -%}
<title data-dynamic="title">{{ pageTitle }}</title>
<link rel="canonical" href="{{ fullUrl }}" />
<meta property="og:title" content="{{ pageTitle }}" data-dynamic="og:title" />

View file

@ -1,33 +1,36 @@
<script type="module" src="/assets/scripts/components/select-pagination.js?v={% appVersion %}"></script>
<nav aria-label="Pagination" class="pagination">
{%- if pagination.href.previous -%}
<a href="{{ pagination.href.previous }}" aria-label="Previous page">
{% tablericon "arrow-left" %}
</a>
{%- else -%}
<span class="disabled" disabled>
{% tablericon "arrow-left" %}
</span>
{%- endif -%}
{% assign prevHref = pagination.href.previous %}
{% assign nextHref = pagination.href.next %}
<a
href="{{ prevHref }}"
aria-label="Previous page"
class="{% unless prevHref %}disabled{% endunless %}"
{% unless prevHref %}disabled{% endunless %}
>
{% tablericon "arrow-left" %}
</a>
<select-pagination>
<select class="client-side" aria-label="Page selection">
{%- for pageEntry in pagination.pages -%}
<option value="{{ forloop.index | minus: 1 }}">{{ forloop.index }} of {{ pagination.links.size }}</option>
<option value="{{ forloop.index | minus: 1 }}">
{{ forloop.index }} of {{ pagination.links.size }}
</option>
{%- endfor -%}
</select>
<noscript>
<p>
<span aria-current="page">{{ pagination.pageNumber | plus: 1 }}</span> of {{ pagination.links.size }}
<span aria-current="page">{{ pagination.pageNumber | plus: 1 }}</span>
of {{ pagination.links.size }}
</p>
</noscript>
</select-pagination>
{%- if pagination.href.next -%}
<a href="{{ pagination.href.next }}" aria-label="Next page">
{% tablericon "arrow-right" %}
</a>
{%- else -%}
<span class="disabled" disabled>
{% tablericon "arrow-right" %}
</span>
{%- endif -%}
<a
href="{{ nextHref }}"
aria-label="Next page"
class="{% unless nextHref %}disabled{% endunless %}"
{% unless nextHref %}disabled{% endunless %}
>
{% tablericon "arrow-right" %}
</a>
</nav>