Fix YAML syntax errors

This commit is contained in:
Nathan Upchurch 2025-07-16 12:52:35 -05:00
parent 5df418eb2e
commit 4fa562d0fe
2 changed files with 4 additions and 4 deletions

View File

@ -8,8 +8,8 @@ tags: gallery
structuredData: none structuredData: none
eleventyComputed: eleventyComputed:
title: "{{ gallery.title }}" title: "{{ gallery.title }}"
permalink: "/gallery/{{ gallery.title | slugify }}/" permalink: "/gallery/{{ gallery.title | slugify }}/"
description: "{{ gallery.description }}" description: "{{ gallery.description }}"
--- ---
<h1>{{ gallery.title }}</h1> <h1>{{ gallery.title }}</h1>
<p class="page-block nodropcap">{{ gallery.description }}</p> <p class="page-block nodropcap">{{ gallery.description }}</p>

View File

@ -14,8 +14,8 @@ postlistHeaderText: "Latest Posts:"
structuredData: none structuredData: none
eleventyComputed: eleventyComputed:
title: Posts tagged “{{ tag }}” title: Posts tagged “{{ tag }}”
permalink: "/tags/{{ tag | slugify }}/" permalink: "/tags/{{ tag | slugify }}/"
description: A list of every post I've written tagged “{{ tag }}.” description: A list of every post I've written tagged “{{ tag }}.”
--- ---
<h1>Topic: “{{ tag }}.” <h1>Topic: “{{ tag }}.”
</h1> </h1>