diff --git a/package-lock.json b/package-lock.json
index 2a773514..d7d1fdfa 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "coryd.dev",
- "version": "19.5.13",
+ "version": "19.5.14",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "coryd.dev",
- "version": "19.5.13",
+ "version": "19.5.14",
"license": "MIT",
"dependencies": {
"@cdransf/api-text": "^1.4.0",
diff --git a/package.json b/package.json
index e89d210c..a9cea679 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "coryd.dev",
- "version": "19.5.13",
+ "version": "19.5.14",
"description": "The source for my personal site. Built using 11ty.",
"type": "module",
"scripts": {
diff --git a/src/_includes/partials/home/posts.liquid b/src/_includes/partials/home/posts.liquid
index 83b06bd5..2aaaab7e 100644
--- a/src/_includes/partials/home/posts.liquid
+++ b/src/_includes/partials/home/posts.liquid
@@ -15,7 +15,7 @@
- {{ post.title }}
+ {{ post.title }}
{{ meta.siteName }}
{{ post.data.post_excerpt }}
diff --git a/src/_includes/partials/widgets/popular-posts.liquid b/src/_includes/partials/widgets/popular-posts.liquid
index c8c80116..906abc67 100644
--- a/src/_includes/partials/widgets/popular-posts.liquid
+++ b/src/_includes/partials/widgets/popular-posts.liquid
@@ -1,8 +1,8 @@
{% if popularPosts.size > 0 %}
-
+
{% for post in popularPosts limit: 5 %}
-
diff --git a/src/_includes/partials/widgets/recent-links.liquid b/src/_includes/partials/widgets/recent-links.liquid
index 2fa9cfca..b40dc5a5 100644
--- a/src/_includes/partials/widgets/recent-links.liquid
+++ b/src/_includes/partials/widgets/recent-links.liquid
@@ -1,8 +1,8 @@
{% if links.size > 0 %}
-
+
{% for link in links limit: 5 %}
-
diff --git a/src/assets/styles/base/index.css b/src/assets/styles/base/index.css
index e7668a2d..3a28c9ee 100644
--- a/src/assets/styles/base/index.css
+++ b/src/assets/styles/base/index.css
@@ -187,10 +187,6 @@ h6 { font-size: var(--font-size-sm) }
.section-header {
margin: var(--sizing-xl) 0 var(--sizing-lg);
- &.reduced-margin {
- margin: var(--sizing-md) 0 var(--sizing-lg);
- }
-
&.no-top-margin {
margin: 0 0 var(--sizing-lg);
}
@@ -611,7 +607,7 @@ li {
flex-direction: row;
}
- article h2 {
+ article h3 {
margin: 0 0 var(--sizing-xs);
}
diff --git a/src/pages/main/books/book.html b/src/pages/main/books/book.html
index f406e835..f637ef47 100644
--- a/src/pages/main/books/book.html
+++ b/src/pages/main/books/book.html
@@ -53,7 +53,7 @@ schema: book
{% endif %}
{% if book.description %}
- Overview
+ Overview
{{ book.description | markdown }}
{% endif %}
\ No newline at end of file
diff --git a/src/pages/main/music/index.html b/src/pages/main/music/index.html
index f6b342a5..fff04c7d 100644
--- a/src/pages/main/music/index.html
+++ b/src/pages/main/music/index.html
@@ -15,28 +15,28 @@ schema: music-index
See more of the artists, albums or tracks I've listened to this week. Or take a look at what I've listened to this month or over the last 3 months
{% render "partials/widgets/now-playing.liquid" %}
-
+
{% render "partials/media/grid.liquid", data:music.week.artists, shape: "square", count: 8, loading: "eager" %}
-
+
{% render "partials/media/grid.liquid", data:music.week.albums, shape: "square", count: 8 %}
- {{ post.title }}
+ {{ post.title }}
{{ meta.siteName }}
{{ post.description }}
diff --git a/src/pages/main/watching/index.html b/src/pages/main/watching/index.html
index 6d59d1f2..1ca78030 100644
--- a/src/pages/main/watching/index.html
+++ b/src/pages/main/watching/index.html
@@ -12,33 +12,33 @@ schema: watching
Here's all of the TV and movies I've been watching presented in what is (hopefully) an organized fashion. You can also take a look at the movies and shows I'm planning to watch.
{% render "partials/banners/rss.liquid", url: "https://feedpress.me/coryd-movies", text: "Subscribe to my movies feed or follow along on this page" %}
-
+
{% render "partials/media/grid.liquid", data:movies.recentlyWatched, shape: "vertical", count: 6 %}
-
+
{% render "partials/media/grid.liquid", data:tv.recentlyWatched, shape: "vertical", count: 6 %}
-
+
{% assign favoriteMovies = movies.favorites | featuredWatching: 6 %}
{% render "partials/media/watching/grid.liquid", mediaItems:favoriteMovies, count: 6 %}
-
+
{% assign favoriteShows = tv.favorites | featuredWatching: 6 %}
{% render "partials/media/watching/grid.liquid", mediaItems:favoriteShows, count: 6 %}
\ No newline at end of file
diff --git a/src/pages/main/watching/movie.html b/src/pages/main/watching/movie.html
index 483209fb..271abe2f 100644
--- a/src/pages/main/watching/movie.html
+++ b/src/pages/main/watching/movie.html
@@ -43,7 +43,7 @@ schema: movie
{% endif %}
{% if movie.description %}
- Overview
+ Overview
{{ movie.description | markdown }}
{% endif %}
\ No newline at end of file
diff --git a/src/pages/main/watching/show.html b/src/pages/main/watching/show.html
index 44f869c3..3f7fe626 100644
--- a/src/pages/main/watching/show.html
+++ b/src/pages/main/watching/show.html
@@ -42,7 +42,7 @@ schema: show
{% endif %}
{% if show.description %}
- Overview
+ Overview
{{ show.description | markdown }}
{% endif %}
\ No newline at end of file