From 1772179b5d0c873b9a0090f877b8fbb9b5dc9253 Mon Sep 17 00:00:00 2001 From: Devin Haska Date: Sat, 31 May 2025 21:46:33 -0700 Subject: [PATCH] feat: Refactor all page layouts --- src/includes/layouts/book.html | 10 ++-------- src/includes/layouts/game.html | 10 ++-------- src/includes/layouts/movie.html | 10 ++-------- src/includes/layouts/page.html | 13 +++++++++++++ src/includes/layouts/post.html | 9 ++------- src/includes/layouts/show.html | 10 ++-------- src/includes/macros/utils.njk | 12 ++++++++++++ src/pages/404.html | 4 ++-- src/pages/about.md | 5 ++--- src/pages/blogroll.html | 3 +-- src/pages/books/favourites.html | 3 +-- src/pages/books/index.html | 4 ++-- src/pages/books/recent.html | 3 +-- src/pages/books/tag.html | 11 ++++++----- src/pages/books/tags.html | 1 - src/pages/changelog.md | 5 +---- src/pages/colophon.md | 3 +-- src/pages/contact.html | 5 +---- src/pages/feeds.html | 2 +- src/pages/games/favourites.html | 3 +-- src/pages/games/index.html | 2 +- src/pages/games/recent.html | 3 +-- src/pages/games/tag.html | 11 ++++++----- src/pages/games/tags.html | 1 - src/pages/now.html | 5 ++--- src/pages/pages.json | 2 +- src/pages/past-designs.md | 3 +-- src/pages/posts.html | 3 +-- src/pages/styleguide.html | 17 +++++++++-------- src/pages/tag.html | 2 +- src/pages/tags.html | 1 - src/pages/uses.md | 5 +---- src/pages/watching/index.html | 4 ++-- src/pages/watching/movies/favourites.html | 3 +-- src/pages/watching/movies/recent.html | 3 +-- src/pages/watching/movies/tag.html | 11 ++++++----- src/pages/watching/movies/tags.html | 1 - src/pages/watching/shows/favourites.html | 3 +-- src/pages/watching/shows/recent.html | 3 +-- src/pages/watching/shows/tag.html | 11 ++++++----- src/pages/watching/shows/tags.html | 1 - src/pages/webrings.html | 1 - 42 files changed, 97 insertions(+), 125 deletions(-) create mode 100644 src/includes/layouts/page.html diff --git a/src/includes/layouts/book.html b/src/includes/layouts/book.html index 7447769..4f5f7b5 100644 --- a/src/includes/layouts/book.html +++ b/src/includes/layouts/book.html @@ -3,16 +3,10 @@ layout: "layouts/base" --- {% from "macros/date.njk" import format %} -{% from "macros/utils.njk" import stars, spoilerWarning %} +{% from "macros/utils.njk" import stars, spoilerWarning, pageHeader %} {% from "macros/tags.njk" import tagList %}
-
-
-

{{ title }}

- {% if pullquote %}

{{ pullquote }}

{% endif %} -
- {{ format(page.date) }} -
+ {{ pageHeader(title, pullquote, page.date) }} {% if hasSpoilers %} {{ spoilerWarning() }} {% endif %} diff --git a/src/includes/layouts/game.html b/src/includes/layouts/game.html index fcfc0c3..0bb4bcf 100644 --- a/src/includes/layouts/game.html +++ b/src/includes/layouts/game.html @@ -3,16 +3,10 @@ layout: "layouts/base" --- {% from "macros/date.njk" import format %} -{% from "macros/utils.njk" import stars, spoilerWarning %} +{% from "macros/utils.njk" import stars, spoilerWarning, pageHeader %} {% from "macros/tags.njk" import tagList %}
-
-
-

{{ title }}

- {% if pullquote %}

{{ pullquote }}

{% endif %} -
- {{ format(page.date) }} -
+ {{ pageHeader(title, pullquote, page.date) }} {% if hasSpoilers %} {{ spoilerWarning() }} {% endif %} diff --git a/src/includes/layouts/movie.html b/src/includes/layouts/movie.html index 691b67e..5e4e433 100644 --- a/src/includes/layouts/movie.html +++ b/src/includes/layouts/movie.html @@ -3,16 +3,10 @@ layout: "layouts/base" --- {% from "macros/date.njk" import format %} -{% from "macros/utils.njk" import stars, spoilerWarning %} +{% from "macros/utils.njk" import stars, spoilerWarning, pageHeader %} {% from "macros/tags.njk" import tagList %}
-
-
-

{{ title }}

- {% if pullquote %}

{{ pullquote }}

{% endif %} -
- {{ format(page.date) }} -
+ {{ pageHeader(title, pullquote, page.date) }} {% if hasSpoilers %} {{ spoilerWarning() }} {% endif %} diff --git a/src/includes/layouts/page.html b/src/includes/layouts/page.html new file mode 100644 index 0000000..f13548a --- /dev/null +++ b/src/includes/layouts/page.html @@ -0,0 +1,13 @@ +--- +layout: "layouts/base" +--- + +{% from "macros/date.njk" import format %} +{% from "macros/tags.njk" import tagList %} +{% from "macros/utils.njk" import pageHeader %} +
+ {{ pageHeader(title, subtitle) }} +
+ {{ content | safe }} +
+
diff --git a/src/includes/layouts/post.html b/src/includes/layouts/post.html index 9d63ff3..25c2483 100644 --- a/src/includes/layouts/post.html +++ b/src/includes/layouts/post.html @@ -4,14 +4,9 @@ layout: "layouts/base" {% from "macros/date.njk" import format %} {% from "macros/tags.njk" import tagList %} +{% from "macros/utils.njk" import pageHeader %}
-
-
-

{{ title }}

-

{{ excerpt }}

-
- {{ format(page.date) }} -
+ {{ pageHeader(title, excerpt, page.date) }}
{{ content | safe }}
diff --git a/src/includes/layouts/show.html b/src/includes/layouts/show.html index 562b06e..a9969d1 100644 --- a/src/includes/layouts/show.html +++ b/src/includes/layouts/show.html @@ -3,16 +3,10 @@ layout: "layouts/base" --- {% from "macros/date.njk" import format %} -{% from "macros/utils.njk" import stars, spoilerWarning %} +{% from "macros/utils.njk" import stars, spoilerWarning, pageHeader %} {% from "macros/tags.njk" import tagList %}
-
-
-

{{ title }}

- {% if pullquote %}

{{ pullquote }}

{% endif %} -
- {{ format(page.date) }} -
+ {{ pageHeader(title, pullquote, page.date) }} {% if hasSpoilers %} {{ spoilerWarning() }} {% endif %} diff --git a/src/includes/macros/utils.njk b/src/includes/macros/utils.njk index 1f0b023..f3a535c 100644 --- a/src/includes/macros/utils.njk +++ b/src/includes/macros/utils.njk @@ -1,3 +1,5 @@ +{% from "macros/date.njk" import format %} + {% macro stars(number) %} {% set filledStars = number %} {% set emptyStars = 5 - number %} @@ -19,3 +21,13 @@ The following may contain spoilers! {% endmacro %} + +{% macro pageHeader(title, subtitle, date) %} +
+
+

{{ title }}

+ {% if subtitle %}

{{ subtitle }}

{% endif %} +
+ {% if date %}{{ format(date) }}{% endif %} +
+{% endmacro %} diff --git a/src/pages/404.html b/src/pages/404.html index ed504b5..1463828 100644 --- a/src/pages/404.html +++ b/src/pages/404.html @@ -1,11 +1,11 @@ --- permalink: /404.html -title: 404 - Can't Find That Frog +title: 404 - Can't Find That Frog 🐸 +subtitle: Where froggo art thou? youtube: true ---
-

404 🍞

Couldn't find what you're looking for. But would you like some bread for your journey home? 🥖

{% youtube "GQw-aEk05qY", "Call 1800 Tobë ( Bread Ad )" %}

diff --git a/src/pages/about.md b/src/pages/about.md index 7e12891..3424e6d 100644 --- a/src/pages/about.md +++ b/src/pages/about.md @@ -1,10 +1,9 @@ --- -title: About +title: About me +subtitle: It's all about me! description: All about me! --- -# About me - **See also**: [Stuff I use](/uses), my [contact info](/contact), or [what's happening now](/now). Hello! Ahoj! Welcome to my site! diff --git a/src/pages/blogroll.html b/src/pages/blogroll.html index 213265f..7705c0a 100644 --- a/src/pages/blogroll.html +++ b/src/pages/blogroll.html @@ -1,11 +1,10 @@ --- title: Blogroll +subtitle: A collection of my favourite sites, in no particular order. description: A collection of my favourite sites. ---

-

Blogroll

-

A collection of my favourite sites, in no particular order.

If you're looking for more cool sites, visit -

Favourite books

-

A collection of my favourite books!

{{ grid(data) }}
diff --git a/src/pages/books/index.html b/src/pages/books/index.html index ecdecac..6487dda 100644 --- a/src/pages/books/index.html +++ b/src/pages/books/index.html @@ -1,5 +1,6 @@ --- title: Books +subtitle: A collection of books I've read over the years. permalink: "books/index.html" --- @@ -8,8 +9,7 @@ permalink: "books/index.html" {% set faves = collections.book | filterFavourites | reverse | limit(5) %} {% set tags = collections.book | allTagCounts(["book"]) | limit(5) %}
-

Books

-

A collection of books I've read over the years. I hope one day its an exhaustive list.

+

I hope one day its an exhaustive list.

Tags

diff --git a/src/pages/books/recent.html b/src/pages/books/recent.html index 630cf2b..62aff74 100644 --- a/src/pages/books/recent.html +++ b/src/pages/books/recent.html @@ -1,5 +1,6 @@ --- title: Recent books +subtitle: A collection of books I've read recently. permalink: "books/recent/index.html" --- @@ -7,8 +8,6 @@ permalink: "books/recent/index.html" {% set data = collections.book | reverse %} {% set tags = collections.book | allTagCounts(["book"]) | limit(5) %}
-

Recent books

-

A collection of books I've read.

Tags

diff --git a/src/pages/books/tag.html b/src/pages/books/tag.html index 3453b5f..5fd29a0 100644 --- a/src/pages/books/tag.html +++ b/src/pages/books/tag.html @@ -4,12 +4,13 @@ pagination: size: 1 alias: tag permalink: "books/tag/{{ tag | slugify }}/index.html" +eleventyComputed: + title: "Books: Tag: \"{{ tag }}\"" + subtitle: "All books tagged with \"{{ tag }}\"" --- {% from "macros/media-grid.njk" import grid %} {% set data = collections.booksByTag[tag] | reverse %} -
-

Books

-

Tagged with "{{ tag }}"

-
-{{ grid(data) }} +
+ {{ grid(data) }} +
diff --git a/src/pages/books/tags.html b/src/pages/books/tags.html index df7b128..fcc102f 100644 --- a/src/pages/books/tags.html +++ b/src/pages/books/tags.html @@ -6,7 +6,6 @@ permalink: "books/tags/index.html" {% from "macros/media-grid.njk" import grid %} {% set tags = collections.book | allTagCounts(["book"]) %}
-

Tagged in Books

    {% for tag in tags %}
  • diff --git a/src/pages/changelog.md b/src/pages/changelog.md index 81022f5..0cdcabb 100644 --- a/src/pages/changelog.md +++ b/src/pages/changelog.md @@ -1,13 +1,10 @@ --- title: Changelog +subtitle: All the changes that are fit to read! eleventyComputed: description: All of the latest changes on {{ meta.siteName }}. --- -# Changelog - -All the changes that are fit to read! - If preferred, the [commit log is available here][commits]. ## May 31st, 2025 diff --git a/src/pages/colophon.md b/src/pages/colophon.md index 0427294..91d4eef 100644 --- a/src/pages/colophon.md +++ b/src/pages/colophon.md @@ -1,10 +1,9 @@ --- title: Colophon +subtitle: A fancy word for describing how this site was built. description: A little bit of everything about this site. --- -# Colophon - A little bit of everything regarding how this site was built and its origins. ## Technology diff --git a/src/pages/contact.html b/src/pages/contact.html index 09d4d60..b5648fd 100644 --- a/src/pages/contact.html +++ b/src/pages/contact.html @@ -1,13 +1,10 @@ --- title: Contact +subtitle: Various ways to get in touch with me on the internet. description: Various ways to get in touch. permalink: "/contact/index.html" --- -
    -

    Contact

    -

    Various ways to get in touch with me on the internet.

    -

    Below are my primary methods of contact. They are the ones I monitor most and likely to respond!

    diff --git a/src/pages/feeds.html b/src/pages/feeds.html index 0ebcc21..779ee50 100644 --- a/src/pages/feeds.html +++ b/src/pages/feeds.html @@ -1,9 +1,9 @@ --- title: Feeds +subtitle: Feed yourself a veritable bevy of feeds. description: Feed yourself a veritable bevy of feeds. --- -

    Feeds

    Here is my collection of feeds for your perusal. They come in RSS varieties.

    • diff --git a/src/pages/games/favourites.html b/src/pages/games/favourites.html index fe7903d..b4f31e8 100644 --- a/src/pages/games/favourites.html +++ b/src/pages/games/favourites.html @@ -1,12 +1,11 @@ --- title: Favourite games +subtitle: A collection of my favourite games! permalink: "games/favourites/index.html" --- {% from "macros/media-grid.njk" import grid %} {% set data = collections.game | filterFavourites | reverse %}
      -

      Favourite games

      -

      A collection of my favourite games!

      {{ grid(data) }}
      diff --git a/src/pages/games/index.html b/src/pages/games/index.html index c0751d3..31b4bd0 100644 --- a/src/pages/games/index.html +++ b/src/pages/games/index.html @@ -1,5 +1,6 @@ --- title: Games +subtitle: I happen to quite like video games. permalink: "games/index.html" --- @@ -8,7 +9,6 @@ permalink: "games/index.html" {% set faves = collections.game | filterFavourites | reverse | limit(5) %} {% set tags = collections.game | allTagCounts(["game"]) | limit(5) %}
      -

      Games

      A collection of games I played over the years. Ideally this would include every game I've every played, but realistically it's an approximation. I try to include my own thoughts with each.

      diff --git a/src/pages/games/recent.html b/src/pages/games/recent.html index d9c5a0a..0dc216e 100644 --- a/src/pages/games/recent.html +++ b/src/pages/games/recent.html @@ -1,5 +1,6 @@ --- title: Recent games +subtitle: A collection of games that I've played recently. permalink: "games/recent/index.html" --- @@ -7,8 +8,6 @@ permalink: "games/recent/index.html" {% set data = collections.game | reverse %} {% set tags = collections.game | allTagCounts(["game"]) | limit(5) %}
      -

      Recent games

      -

      A collection of games I've played.

      Tags

      diff --git a/src/pages/games/tag.html b/src/pages/games/tag.html index f988c1b..961e19c 100644 --- a/src/pages/games/tag.html +++ b/src/pages/games/tag.html @@ -4,12 +4,13 @@ pagination: size: 1 alias: tag permalink: "games/tag/{{ tag | slugify }}/index.html" +eleventyComputed: + title: "Games: Tag: \"{{ tag }}\"" + subtitle: "All games tagged with \"{{ tag }}\"" --- {% from "macros/media-grid.njk" import grid %} {% set data = collections.gamesByTag[tag] %} -
      -

      Games

      -

      Tagged with "{{ tag }}"

      -
      -{{ grid(data) }} +
      + {{ grid(data) }} +
      diff --git a/src/pages/games/tags.html b/src/pages/games/tags.html index c019718..d88d361 100644 --- a/src/pages/games/tags.html +++ b/src/pages/games/tags.html @@ -6,7 +6,6 @@ permalink: "games/tags/index.html" {% from "macros/media-grid.njk" import grid %} {% set tags = collections.game | allTagCounts(["game"]) %}
      -

      Tagged in Games

        {% for tag in tags %}
      • diff --git a/src/pages/now.html b/src/pages/now.html index f0a5cdd..0b0bd0f 100644 --- a/src/pages/now.html +++ b/src/pages/now.html @@ -1,11 +1,10 @@ --- title: /now +subtitle: Right now! What's happening right now? description: What's going on now and all the latest with myself. --- -{% set recentTrack = lastfm.recentTracks[0] %} -

        /now

        -

        What am I doing right now? Everything on here is automatically generated from various data sources.

        +

        Everything on here is automatically generated from various data sources.

        {% if listenbrainz.length > 0 %}

        🎶 Listening

        diff --git a/src/pages/pages.json b/src/pages/pages.json index fd3fba2..26eee07 100644 --- a/src/pages/pages.json +++ b/src/pages/pages.json @@ -1,5 +1,5 @@ { - "layout": "layouts/base", + "layout": "layouts/page", "permalink": "{{ page.fileSlug }}/index.html", "tags": ["page"] } diff --git a/src/pages/past-designs.md b/src/pages/past-designs.md index ec8df37..aaa08f9 100644 --- a/src/pages/past-designs.md +++ b/src/pages/past-designs.md @@ -1,10 +1,9 @@ --- title: Past Designs +subtitle: Who doesn't love a trip down memory lane? description: The living chronicle of my site's design. --- -# Past Designs - I love to tinker, and my website design is no exception. Trying my best to chronicle the visual changes it has taken over the years. I may update this page from time to time to include even older designs! ## 3.0 ([March 2024](/posts/version-3/)) diff --git a/src/pages/posts.html b/src/pages/posts.html index 7ac6146..02d0ab0 100644 --- a/src/pages/posts.html +++ b/src/pages/posts.html @@ -1,10 +1,9 @@ --- -title: Posts +title: All posts description: Read all of my posts. --- {% from "macros/posts.njk" import yearList %} -

        All posts

        Browse all of my posts, or narrow things down via tags.

        diff --git a/src/pages/styleguide.html b/src/pages/styleguide.html index 7d5b641..414cc6d 100644 --- a/src/pages/styleguide.html +++ b/src/pages/styleguide.html @@ -1,5 +1,6 @@ --- title: Styleguide +subtitle: A demo of the site's theme. description: A demo of the site's theme. --- @@ -24,14 +25,14 @@ description: A demo of the site's theme.


        -
        -
        -
        -
        -
        -
        -
        -
        +
        +
        +
        +
        +
        +
        +
        +

        diff --git a/src/pages/tag.html b/src/pages/tag.html index 38f1d0f..693f93c 100644 --- a/src/pages/tag.html +++ b/src/pages/tag.html @@ -7,11 +7,11 @@ pagination: - post permalink: /tags/{{ tag | slugify }}/index.html eleventyComputed: + title: "Tag: \"{{ tag }}\"" description: Browse all posts tagged with "{{ tag }}". --- {% from "macros/posts.njk" import yearList %} -

        Tag: {{ tag }}

        All posts tagged with "{{ tag }}", or go back to all tags.

        diff --git a/src/pages/tags.html b/src/pages/tags.html index 65c8b0d..62da99b 100644 --- a/src/pages/tags.html +++ b/src/pages/tags.html @@ -5,7 +5,6 @@ description: Browse posts by all tags. {% set tags = collections.post | allTagCounts %}
        -

        {{ title }}

          {% for tag in tags %}
        1. diff --git a/src/pages/uses.md b/src/pages/uses.md index ef52e10..a17f3c3 100644 --- a/src/pages/uses.md +++ b/src/pages/uses.md @@ -1,14 +1,11 @@ --- title: /uses +subtitle: A list of my favourite software, tools, gear, configurations, and everything else between. description: A list of my favourite things and why I like 'em. --- -# Uses - Last updated on **May 31st, 2025**. -A list of my favourite software, tools, gear, configurations, and everything else between. - More lists like this are available at [uses.tech](https://uses.tech/). There are no affiliate links. diff --git a/src/pages/watching/index.html b/src/pages/watching/index.html index 1100350..e739e98 100644 --- a/src/pages/watching/index.html +++ b/src/pages/watching/index.html @@ -1,5 +1,6 @@ --- title: Watching +subtitle: A collection of movies and shows I've seen. permalink: "watching/index.html" --- @@ -9,8 +10,7 @@ permalink: "watching/index.html" {% set favouriteMovies = collections.movie | filterFavourites | reverse | limit(5) %} {% set favouriteShows = collections.tv | filterFavourites | reverse | limit(5) %}
          -

          Watching

          -

          A collection of movies and shows I've seen. I tend to watch more movies than shows these days.

          +

          I tend to watch more movies than shows these days.

          Recent movies

          diff --git a/src/pages/watching/movies/favourites.html b/src/pages/watching/movies/favourites.html index 0ea6afc..48ce690 100644 --- a/src/pages/watching/movies/favourites.html +++ b/src/pages/watching/movies/favourites.html @@ -1,12 +1,11 @@ --- title: Favourite movies +subtitle: A collection of my favourite movies! permalink: "watching/movies/favourites/index.html" --- {% from "macros/media-grid.njk" import grid %} {% set data = collections.movie | filterFavourites | reverse %}
          -

          Favourite movies

          -

          A collection of my favourite movies!

          {{ grid(data) }}
          diff --git a/src/pages/watching/movies/recent.html b/src/pages/watching/movies/recent.html index 8a832b7..dfc5f38 100644 --- a/src/pages/watching/movies/recent.html +++ b/src/pages/watching/movies/recent.html @@ -1,5 +1,6 @@ --- title: Recent movies +subtitle: A collection of movies I've seen recently. permalink: "watching/movies/recent/index.html" --- @@ -7,8 +8,6 @@ permalink: "watching/movies/recent/index.html" {% set data = collections.movie | reverse %} {% set tags = collections.movie | allTagCounts(["movie"]) | limit(5) %}
          -

          Recent movies

          -

          A collection of movies I've seen recently.

          Tags

          diff --git a/src/pages/watching/movies/tag.html b/src/pages/watching/movies/tag.html index ae0837e..07a3cab 100644 --- a/src/pages/watching/movies/tag.html +++ b/src/pages/watching/movies/tag.html @@ -4,12 +4,13 @@ pagination: size: 1 alias: tag permalink: "watching/movies/tag/{{ tag | slugify }}/index.html" +eleventyComputed: + title: "Movies: Tag: \"{{ tag }}\"" + subtitle: "All movies tagged with \"{{ tag }}\"" --- {% from "macros/media-grid.njk" import grid %} {% set data = collections.moviesByTag[tag] | reverse %} -
          -

          Movies

          -

          Tagged with "{{ tag }}"

          -
          -{{ grid(data) }} +
          + {{ grid(data) }} +
          diff --git a/src/pages/watching/movies/tags.html b/src/pages/watching/movies/tags.html index e474bd2..5bdaa6f 100644 --- a/src/pages/watching/movies/tags.html +++ b/src/pages/watching/movies/tags.html @@ -6,7 +6,6 @@ permalink: "watching/movies/tags/index.html" {% from "macros/media-grid.njk" import grid %} {% set tags = collections.movie | allTagCounts(["movie"]) %}
          -

          Tagged in Movies

            {% for tag in tags %}
          • diff --git a/src/pages/watching/shows/favourites.html b/src/pages/watching/shows/favourites.html index 8ace608..d8739cf 100644 --- a/src/pages/watching/shows/favourites.html +++ b/src/pages/watching/shows/favourites.html @@ -1,12 +1,11 @@ --- title: Favourite shows +subtitle: A collection of my favourite shows! permalink: "watching/shows/favourites/index.html" --- {% from "macros/media-grid.njk" import grid %} {% set data = collections.tv | filterFavourites | reverse %}
            -

            Favourite shows

            -

            A collection of my favourite shows!

            {{ grid(data) }}
            diff --git a/src/pages/watching/shows/recent.html b/src/pages/watching/shows/recent.html index 2a142be..d560cdf 100644 --- a/src/pages/watching/shows/recent.html +++ b/src/pages/watching/shows/recent.html @@ -1,5 +1,6 @@ --- title: Recent shows +subtitle: A collection of shows I've seen recently. permalink: "watching/shows/recent/index.html" --- @@ -7,8 +8,6 @@ permalink: "watching/shows/recent/index.html" {% set data = collections.tv | reverse %} {% set tags = collections.tv | allTagCounts(["tv"]) | limit(5) %}
            -

            Recent shows

            -

            A collection of shows I've seen recently.

            Tags

            diff --git a/src/pages/watching/shows/tag.html b/src/pages/watching/shows/tag.html index d44b127..ee82dc1 100644 --- a/src/pages/watching/shows/tag.html +++ b/src/pages/watching/shows/tag.html @@ -4,12 +4,13 @@ pagination: size: 1 alias: tag permalink: "watching/shows/tag/{{ tag | slugify }}/index.html" +eleventyComputed: + title: "Shows: Tag: \"{{ tag }}\"" + subtitle: "All shows tagged with \"{{ tag }}\"" --- {% from "macros/media-grid.njk" import grid %} {% set data = collections.showsByTag[tag] | reverse %} -
            -

            Shows

            -

            Tagged with "{{ tag }}"

            -
            -{{ grid(data) }} +
            + {{ grid(data) }} +
            diff --git a/src/pages/watching/shows/tags.html b/src/pages/watching/shows/tags.html index effd950..485938d 100644 --- a/src/pages/watching/shows/tags.html +++ b/src/pages/watching/shows/tags.html @@ -6,7 +6,6 @@ permalink: "watching/shows/tags/index.html" {% from "macros/media-grid.njk" import grid %} {% set tags = collections.tv | allTagCounts(["tv"]) %}
            -

            Tagged in Shows

              {% for tag in tags %}
            • diff --git a/src/pages/webrings.html b/src/pages/webrings.html index 2bb2afd..7026b4b 100644 --- a/src/pages/webrings.html +++ b/src/pages/webrings.html @@ -3,7 +3,6 @@ title: Webrings description: What's a webring? --- -

              Webrings

              You're probably wondering what the heck is a webring? It's a collection of sites banding under a common theme or idea, and it's circular (like a ring). You can read more on Wikipedia!