Convert front matter to TOML

This commit is contained in:
Will Faught
2024-06-27 16:26:10 -07:00
parent e4b131531b
commit 7ca3bad051
37 changed files with 366 additions and 376 deletions

View File

@@ -1,13 +1,13 @@
---
authors: ["author-demo"]
categories: ["layouts", "paige"]
date: "2024-06-03T21:21:05-07:00"
description: "Demonstration of the Paige cloud layout."
layout: "paige/cloud"
tags: ["cloud"]
title: "Cloud Layout"
weight: 20
---
+++
authors = ["author-demo"]
categories = ["layouts", "paige"]
date = "2024-06-03T21:21:05-07:00"
description = "Demonstration of the Paige cloud layout."
layout = "paige/cloud"
tags = ["cloud"]
title = "Cloud Layout"
weight = 20
+++
Paige provides a `paige/cloud` layout for taxonomy pages with lots of terms.

View File

@@ -1,6 +1,5 @@
---
paige:
feed:
hide_page: true
title: Apple
---
+++
title = "Apple"
[paige.feed]
hide_page = true
+++

View File

@@ -1,6 +1,5 @@
---
paige:
feed:
hide_page: true
title: Banana
---
+++
title = "Banana"
[paige.feed]
hide_page = true
+++

View File

@@ -1,6 +1,5 @@
---
paige:
feed:
hide_page: true
title: Cantaloupe
---
+++
title = "Cantaloupe"
[paige.feed]
hide_page = true
+++