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