Convert front matter to TOML

master
Will Faught 1 year ago
parent e4b131531b
commit 7ca3bad051

@ -1,16 +1,17 @@
---
paige:
search:
hide_page: true
style: |
+++
title = "Paige"
[paige]
style = """
#paige-collections,
#paige-metadata,
#paige-sections,
#paige-pages {
display: none;
}
title: "Paige"
---
"""
[paige.search]
hide_page = true
+++
<p>{{% paige/image alt="Landscape" breakpoints=true class="object-fit-cover rounded-4 shadow-lg" fetchpriority="high" height="20rem" loading="eager" process="webp" src="https://images.unsplash.com/photo-1490604001847-b712b0c2f967?w=1296" width="100%" %}}</p>

@ -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,16 +1,15 @@
---
authors: ["author-demo"]
categories: ["content", "paige"]
date: "2023-09-18T21:21:05-07:00"
description: "An alert."
paige:
alert:
message: "Get more information <a href=\"#\" class=\"alert-link\">here</a>."
type: "primary"
tags: ["alerts"]
title: "Alert"
weight: 60
---
+++
authors = ["author-demo"]
categories = ["content", "paige"]
date = "2023-09-18T21:21:05-07:00"
description = "An alert."
tags = ["alerts"]
title = "Alert"
weight = 60
[paige.alert]
message = "Get more information <a href=\"#\" class=\"alert-link\">here</a>."
type = "primary"
+++
This page has the following parameters:

@ -1,12 +1,12 @@
---
authors: ["author-demo"]
categories: ["content", "paige"]
date: "2023-09-18T21:32:40-07:00"
description: "Guide to emoji usage in Hugo."
tags: ["emoji"]
title: "Emoji Support"
weight: 50
---
+++
authors = ["author-demo"]
categories = ["content", "paige"]
date = "2023-09-18T21:32:40-07:00"
description = "Guide to emoji usage in Hugo."
tags = ["emoji"]
title = "Emoji Support"
weight = 50
+++
<!--
The MIT License (MIT)

@ -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,12 +1,12 @@
---
authors: ["author-demo"]
categories: ["content", "paige"]
date: "2023-09-18T21:32:52-07:00"
description: "Sample article showcasing basic Markdown syntax and formatting for HTML elements."
tags: ["markdown", "css", "html"]
title: "Markdown Syntax Guide"
weight: 10
---
+++
authors = ["author-demo"]
categories = ["content", "paige"]
date = "2023-09-18T21:32:52-07:00"
description = "Sample article showcasing basic Markdown syntax and formatting for HTML elements."
tags = ["css", "html", "markdown"]
title = "Markdown Syntax Guide"
weight = 10
+++
<!--
The MIT License (MIT)

@ -1,14 +1,14 @@
---
authors: ["author-demo"]
categories: ["content", "paige"]
date: "2023-09-18T21:33:03-07:00"
description: "A brief guide to setup KaTeX."
paige:
math: true
tags: ["katex", "math", "typesetting"]
title: "Math Typesetting"
weight: 40
---
+++
authors = ["author-demo"]
categories = ["content", "paige"]
date = "2023-09-18T21:33:03-07:00"
description = "A brief guide to setup KaTeX."
tags = ["katex", "math", "typesetting"]
title = "Math Typesetting"
weight = 40
[paige]
math = true
+++
<!--
The MIT License (MIT)

@ -1,15 +1,14 @@
---
authors: ["author-demo"]
categories: ["content", "paige"]
date: "2023-09-18T21:33:16-07:00"
description: "Lorem Ipsum Dolor Si Amet."
paige:
feed:
hide_page: true
tags: ["markdown", "text"]
title: "Placeholder Text"
weight: 30
---
+++
authors = ["author-demo"]
categories = ["content", "paige"]
date = "2023-09-18T21:33:16-07:00"
description = "Lorem Ipsum Dolor Si Amet."
tags = ["markdown", "text"]
title = "Placeholder Text"
weight = 30
[paige.feed]
hide_page = true
+++
<!--
The MIT License (MIT)

@ -1,15 +1,14 @@
---
authors: ["author-demo"]
categories: ["content", "paige"]
date: "2023-09-18T21:33:24-07:00"
description: "A brief description of Hugo Shortcodes."
paige:
feed:
hide_page: true
tags: ["shortcodes", "privacy"]
title: "Rich Content"
weight: 20
---
+++
authors = ["author-demo"]
categories = ["content", "paige"]
date = "2023-09-18T21:33:24-07:00"
description = "A brief description of Hugo Shortcodes."
tags = ["privacy", "shortcodes"]
title = "Rich Content"
weight = 20
[paige.feed]
hide_page = true
+++
<!--
The MIT License (MIT)

@ -1,9 +1,12 @@
---
authors: ["author-demo"]
categories: ["customization", "paige"]
description: "Demonstrations of Paige customization."
paige:
style: |
+++
authors = ["author-demo"]
categories = ["customization", "paige"]
description = "Demonstrations of Paige customization."
series = ["series-demo"]
tags = ["sections"]
title = "Customization"
[paige]
style = """
#paige-authors,
#paige-credit,
#paige-date,
@ -20,10 +23,8 @@ paige:
.paige-summary {
display: block;
}
series: ["series-demo"]
tags: ["sections"]
title: "Customization"
---
"""
+++
This site hides some section page data by default. This page shows it all.

@ -1,10 +1,14 @@
---
authors: ["author-demo"]
categories: ["customization", "paige"]
date: "2023-09-18T21:21:05-07:00"
description: "Demonstration of Paige customization that shows data."
paige:
style: |
+++
authors = ["author-demo"]
categories = ["customization", "paige"]
date = "2023-09-18T21:21:05-07:00"
description = "Demonstration of Paige customization that shows data."
series = ["series-demo"]
tags = ["show", "singles"]
title = "Show Data"
weight = 20
[paige]
style = """
#paige-authors,
#paige-credit,
#paige-date,
@ -22,11 +26,8 @@ paige:
.paige-summary {
display: block;
}
series: ["series-demo"]
tags: ["show", "singles"]
title: "Show Data"
weight: 20
---
"""
+++
This site hides some single page data by default. This page shows it all.

@ -1,10 +1,14 @@
---
authors: ["author-demo"]
categories: ["customization", "paige"]
date: "2023-09-18T20:21:05-07:00"
description: "Demonstration of Paige customization that styles data."
paige:
style: |
+++
authors = ["author-demo"]
categories = ["customization", "paige"]
date = "2023-09-18T20:21:05-07:00"
description = "Demonstration of Paige customization that styles data."
series = ["series-demo"]
tags = ["singles", "style"]
title = "Style Data"
weight = 10
[paige]
style = """
#paige-authors,
#paige-credit,
#paige-date,
@ -39,11 +43,8 @@ paige:
.paige-keyword { font-style: italic; }
.paige-series { font-style: italic; }
.paige-summary { font-style: italic; }
series: ["series-demo"]
tags: ["singles", "style"]
title: "Style Data"
weight: 10
---
"""
+++
This site uses the default styles on the other pages. This page changes them.

@ -1,4 +1,4 @@
---
description: "Demonstrations of Paige layouts."
title: "Layouts"
---
+++
description = "Demonstrations of Paige layouts."
title = "Layouts"
+++

@ -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.

@ -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,15 +1,14 @@
---
authors: ["author-demo"]
categories: ["layouts", "paige"]
description: "Demonstration of the Paige search layout."
layout: "paige/search"
paige:
feed:
hide_page: true
tags: ["search"]
title: "Search Layout"
weight: 20
---
+++
authors = ["author-demo"]
categories = ["layouts", "paige"]
description = "Demonstration of the Paige search layout."
layout = "paige/search"
tags = ["search"]
title = "Search Layout"
weight = 20
[paige.feed]
hide_page = true
+++
Paige provides a `paige/search` layout for site search.

@ -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,11 +1,11 @@
---
authors: ["author-demo"]
categories: ["paige", "shortcodes"]
date: "2023-09-18T21:34:51-07:00"
description: "Demonstration of the Paige code shortcode."
tags: ["code", "figures"]
title: "Code Shortcode"
---
+++
authors = ["author-demo"]
categories = ["paige", "shortcodes"]
date = "2023-09-18T21:34:51-07:00"
description = "Demonstration of the Paige code shortcode."
tags = ["code", "figures"]
title = "Code Shortcode"
+++
Paige provides a `paige/code` shortcode for displaying code.

@ -1,14 +1,13 @@
---
authors: ["author-demo"]
categories: ["paige", "shortcodes"]
date: "2023-09-18T21:34:58-07:00"
description: "Demonstration of the Paige email shortcode."
paige:
feed:
hide_page: true
tags: ["email"]
title: "Email Shortcode"
---
+++
authors = ["author-demo"]
categories = ["paige", "shortcodes"]
date = "2023-09-18T21:34:58-07:00"
description = "Demonstration of the Paige email shortcode."
tags = ["email"]
title = "Email Shortcode"
[paige.feed]
hide_page = true
+++
Paige provides a `paige/email` shortcode that hides e-mail addresses from robots.

@ -1,14 +1,13 @@
---
authors: ["author-demo"]
categories: ["paige", "shortcodes"]
date: "2023-09-18T21:35:10-07:00"
description: "Demonstration of the Paige figure shortcode."
paige:
feed:
hide_page: true
tags: ["figures"]
title: "Figure Shortcode"
---
+++
authors = ["author-demo"]
categories = ["paige", "shortcodes"]
date = "2023-09-18T21:35:10-07:00"
description = "Demonstration of the Paige figure shortcode."
tags = ["figures"]
title = "Figure Shortcode"
[paige.feed]
hide_page = true
+++
Paige provides a `paige/figure` shortcode for displaying content.

@ -1,14 +1,13 @@
---
authors: ["author-demo"]
categories: ["paige", "shortcodes"]
date: "2023-09-18T21:34:01-07:00"
description: "Demonstration of the Paige gallery shortcode."
paige:
feed:
hide_page: true
tags: ["figures", "gallery", "images"]
title: "Gallery Shortcode"
---
+++
authors = ["author-demo"]
categories = ["paige", "shortcodes"]
date = "2023-09-18T21:34:01-07:00"
description = "Demonstration of the Paige gallery shortcode."
tags = ["figures", "gallery", "images"]
title = "Gallery Shortcode"
[paige.feed]
hide_page = true
+++
Paige provides a `paige/gallery` shortcode for displaying a list of images.

@ -1,11 +1,11 @@
---
authors: ["author-demo"]
categories: ["paige", "shortcodes"]
date: "2023-09-18T21:35:15-07:00"
description: "Demonstration of the Paige icon shortcode."
tags: ["icon", "web font"]
title: "Icon Shortcode"
---
+++
authors = ["author-demo"]
categories = ["paige", "shortcodes"]
date = "2023-09-18T21:35:15-07:00"
description = "Demonstration of the Paige icon shortcode."
tags = ["icon", "web font"]
title = "Icon Shortcode"
+++
Paige provides a `paige/icon` shortcode for displaying a web font icon.

@ -1,14 +1,13 @@
---
authors: ["author-demo"]
categories: ["paige", "shortcodes"]
date: "2023-09-18T21:35:22-07:00"
description: "Demonstration of the Paige image shortcode."
paige:
feed:
hide_page: true
tags: ["figures", "images"]
title: "Image Shortcode"
---
+++
authors = ["author-demo"]
categories = ["paige", "shortcodes"]
date = "2023-09-18T21:35:22-07:00"
description = "Demonstration of the Paige image shortcode."
tags = ["figures", "images"]
title = "Image Shortcode"
[paige.feed]
hide_page = true
+++
Paige provides a `paige/image` shortcode for displaying an image.

@ -1,11 +1,11 @@
---
authors: ["author-demo"]
categories: ["paige", "shortcodes"]
date: "2023-09-18T21:35:28-07:00"
description: "Demonstration of the Paige quote shortcode."
tags: ["figures", "quotations"]
title: "Quote Shortcode"
---
+++
authors = ["author-demo"]
categories = ["paige", "shortcodes"]
date = "2023-09-18T21:35:28-07:00"
description = "Demonstration of the Paige quote shortcode."
tags = ["figures", "quotations"]
title = "Quote Shortcode"
+++
Paige provides a `paige/quote` shortcode for displaying a quotation.

@ -1,14 +1,13 @@
---
authors: ["author-demo"]
categories: ["paige", "shortcodes"]
date: "2023-09-18T21:35:34-07:00"
description: "Demonstration of the Paige Vimeo shortcode."
paige:
feed:
hide_page: true
tags: ["videos", "vimeo"]
title: "Vimeo Shortcode"
---
+++
authors = ["author-demo"]
categories = ["paige", "shortcodes"]
date = "2023-09-18T21:35:34-07:00"
description = "Demonstration of the Paige Vimeo shortcode."
tags = ["videos", "vimeo"]
title = "Vimeo Shortcode"
[paige.feed]
hide_page = true
+++
Paige provides a `paige/vimeo` shortcode for playing Vimeo videos.

@ -1,14 +1,13 @@
---
authors: ["author-demo"]
categories: ["paige", "shortcodes"]
date: "2023-09-18T21:35:40-07:00"
description: "Demonstration of the Paige YouTube shortcode."
paige:
feed:
hide_page: true
tags: ["videos", "youtube"]
title: "YouTube Shortcode"
---
+++
authors = ["author-demo"]
categories = ["paige", "shortcodes"]
date = "2023-09-18T21:35:40-07:00"
description = "Demonstration of the Paige YouTube shortcode."
tags = ["videos", "youtube"]
title = "YouTube Shortcode"
[paige.feed]
hide_page = true
+++
Paige provides a `paige/youtube` shortcode for playing YouTube videos.

@ -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…
Cancel
Save