fix: spacing
This commit is contained in:
parent
5f43e417d1
commit
89b8e9dcad
8 changed files with 27 additions and 28 deletions
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -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",
|
||||
|
|
|
@ -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": {
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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" %}
|
||||
|
|
|
@ -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" />
|
|
@ -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>
|
||||
|
|
|
@ -6,8 +6,6 @@ eleventyExcludeFromCollections: true
|
|||
Sitemap: https://coryd.dev/sitemap.xml
|
||||
|
||||
User-agent: *
|
||||
Disallow: /dynamic.html
|
||||
Disallow: /dynamic
|
||||
Disallow:
|
||||
|
||||
{% for robot in robots -%}
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
---
|
||||
permalink: /dynamic.html
|
||||
---
|
Reference in a new issue