Convert front matter to TOML
parent
e4b131531b
commit
7ca3bad051
@ -1,4 +1,4 @@
|
|||||||
---
|
+++
|
||||||
description: "Browse by author."
|
description = "Browse by author."
|
||||||
title: "Authors"
|
title = "Authors"
|
||||||
---
|
+++
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
---
|
+++
|
||||||
description: "Demonstration of an author."
|
description = "Demonstration of an author."
|
||||||
title: "Author Demo"
|
title = "Author Demo"
|
||||||
---
|
+++
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
+++
|
||||||
description: "Browse by category."
|
description = "Browse by category."
|
||||||
layout: "paige/cloud"
|
layout = "paige/cloud"
|
||||||
title: "Categories"
|
title = "Categories"
|
||||||
---
|
+++
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
---
|
+++
|
||||||
description: "Demonstration of a category."
|
description = "Demonstration of a category."
|
||||||
title: "Paige"
|
title = "Paige"
|
||||||
---
|
+++
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
---
|
+++
|
||||||
description: "Demonstrations of Paige content."
|
description = "Demonstrations of Paige content."
|
||||||
title: "Content"
|
title = "Content"
|
||||||
---
|
+++
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
---
|
+++
|
||||||
authors: ["author-demo"]
|
authors = ["author-demo"]
|
||||||
categories: ["content", "paige"]
|
categories = ["content", "paige"]
|
||||||
date: "2023-09-24T21:29:30-07:00"
|
date = "2023-09-24T21:29:30-07:00"
|
||||||
description: "A front matter link."
|
description = "A front matter link."
|
||||||
link: "https://willfaught.com/paige"
|
link = "https://willfaught.com/paige"
|
||||||
tags: ["link"]
|
tags = ["link"]
|
||||||
title: "Link"
|
title = "Link"
|
||||||
weight: 70
|
weight = 70
|
||||||
---
|
+++
|
||||||
|
|
||||||
It takes you to the home page.
|
It takes you to the home page.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
---
|
+++
|
||||||
description: "Demonstrations of Paige layouts."
|
description = "Demonstrations of Paige layouts."
|
||||||
title: "Layouts"
|
title = "Layouts"
|
||||||
---
|
+++
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
---
|
+++
|
||||||
paige:
|
title = "Apple"
|
||||||
feed:
|
[paige.feed]
|
||||||
hide_page: true
|
hide_page = true
|
||||||
title: Apple
|
+++
|
||||||
---
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
---
|
+++
|
||||||
paige:
|
title = "Banana"
|
||||||
feed:
|
[paige.feed]
|
||||||
hide_page: true
|
hide_page = true
|
||||||
title: Banana
|
+++
|
||||||
---
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
---
|
+++
|
||||||
paige:
|
title = "Cantaloupe"
|
||||||
feed:
|
[paige.feed]
|
||||||
hide_page: true
|
hide_page = true
|
||||||
title: Cantaloupe
|
+++
|
||||||
---
|
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
---
|
+++
|
||||||
description: "Search the site."
|
description = "Search the site."
|
||||||
layout: "paige/search"
|
layout = "paige/search"
|
||||||
paige:
|
title = "Search"
|
||||||
feed:
|
[paige.feed]
|
||||||
hide_page: true
|
hide_page = true
|
||||||
search:
|
[paige.search]
|
||||||
hide_page: true
|
hide_page = true
|
||||||
title: "Search"
|
+++
|
||||||
---
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
---
|
+++
|
||||||
description: "Browse by series."
|
description = "Browse by series."
|
||||||
title: "Series"
|
title = "Series"
|
||||||
---
|
+++
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
---
|
+++
|
||||||
description: "Demonstration of a series."
|
description = "Demonstration of a series."
|
||||||
title: "Series Demo"
|
title = "Series Demo"
|
||||||
---
|
+++
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
---
|
+++
|
||||||
description: "Demonstrations of Paige shortcodes."
|
description = "Demonstrations of Paige shortcodes."
|
||||||
title: "Shortcodes"
|
title = "Shortcodes"
|
||||||
---
|
+++
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
+++
|
||||||
description: "Browse by tag."
|
description = "Browse by tag."
|
||||||
layout: "paige/cloud"
|
layout = "paige/cloud"
|
||||||
title: "Tags"
|
title = "Tags"
|
||||||
---
|
+++
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
---
|
+++
|
||||||
description: "Demonstration of a tag."
|
description = "Demonstration of a tag."
|
||||||
title: "Sections"
|
title = "Sections"
|
||||||
---
|
+++
|
||||||
|
Loading…
Reference in New Issue