fix: spacing

This commit is contained in:
Cory Dransfeldt 2024-11-12 18:20:53 -08:00
parent 5f43e417d1
commit 89b8e9dcad
No known key found for this signature in database
8 changed files with 27 additions and 28 deletions

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "coryd.dev",
"version": "3.0.0",
"version": "3.0.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "coryd.dev",
"version": "3.0.0",
"version": "3.0.1",
"license": "MIT",
"dependencies": {
"@11ty/eleventy-fetch": "4.0.1",

View file

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

View file

@ -1,17 +1,21 @@
.mastodon-post-wrapper {
& dl,
& dt {
display: flex;
}
mastodon-post {
width: 100%;
& dl {
align-items: center;
.mastodon-post-wrapper {
& dl,
& dt {
display: flex;
}
& dd {
margin-left: var(--spacing-xs);
& dl {
align-items: center;
&:not(:last-child) {
margin-right: var(--spacing-lg);
& dd {
margin-left: var(--spacing-xs);
&:not(:last-child) {
margin-right: var(--spacing-lg);
}
}
}
}

View file

@ -33,7 +33,7 @@
<li>
<a href="{{ item.url }}">{{ item.title | default: item.name }}</a>
{% if key == "artists" and item.total_plays > 0 %}
: <strong class="highlight-text">
<strong class="highlight-text">
{{ item.total_plays }} {{ item.total_plays | pluralize: "play" }}
</strong>
{% elsif key == "books" %}

View file

@ -29,11 +29,11 @@
{%- assign ogImage = globals.cdn_url | append: featuredShow.grid.backdrop -%}
{%- endcase -%}
{%- assign escapedPageDescription = pageDescription | escape -%}
<title data-dynamic="title">{{ pageTitle }}</title>
<title>{{ pageTitle }}</title>
<link rel="canonical" href="{{ fullUrl }}" />
<meta property="og:title" content="{{ pageTitle }}" data-dynamic="og:title" />
<meta name="description" content="{{ escapedPageDescription }}" data-dynamic="description" />
<meta property="og:description" content="{{ escapedPageDescription }}" data-dynamic="og:description" />
<meta property="og:title" content="{{ pageTitle }}" />
<meta name="description" content="{{ escapedPageDescription }}" />
<meta property="og:description" content="{{ escapedPageDescription }}" />
<meta property="og:type" content="article" />
<meta property="og:url" content="{{ fullUrl }}" data-dynamic="og:url" />
<meta property="og:image" content="{{ ogImage }}?class=w800" data-dynamic="og:image" />
<meta property="og:url" content="{{ fullUrl }}" />
<meta property="og:image" content="{{ ogImage }}?class=w800" />

View file

@ -50,7 +50,7 @@
<div class="main-wrapper">
<main>
{% render "header.liquid", globals:globals, page:page, nav:nav %}
<div class="default-wrapper" data-dynamic="page">
<div class="default-wrapper">
{{ content }}
</div>
</main>

View file

@ -6,8 +6,6 @@ eleventyExcludeFromCollections: true
Sitemap: https://coryd.dev/sitemap.xml
User-agent: *
Disallow: /dynamic.html
Disallow: /dynamic
Disallow:
{% for robot in robots -%}

View file

@ -1,3 +0,0 @@
---
permalink: /dynamic.html
---