From b59a671ed74164c365cb500454d018eb14e4d65c Mon Sep 17 00:00:00 2001 From: Will Faught Date: Wed, 22 Feb 2023 21:18:06 -0800 Subject: [PATCH] Replace page dates with weights in exampleSite --- exampleSite/content/content/emoji-support.md | 2 +- exampleSite/content/content/markdown-syntax.md | 2 +- exampleSite/content/content/math-typesetting.md | 2 +- exampleSite/content/content/placeholder-text.md | 2 +- exampleSite/content/content/rich-content.md | 2 +- exampleSite/content/layouts/home.md | 2 +- exampleSite/content/layouts/search.md | 2 +- exampleSite/content/shortcodes/code.md | 2 +- exampleSite/content/shortcodes/figure.md | 2 +- exampleSite/content/shortcodes/gallery/index.md | 2 +- exampleSite/content/shortcodes/image.md | 2 +- exampleSite/content/shortcodes/quote.md | 2 +- exampleSite/content/shortcodes/vimeo.md | 2 +- exampleSite/content/shortcodes/youtube.md | 2 +- 14 files changed, 14 insertions(+), 14 deletions(-) diff --git a/exampleSite/content/content/emoji-support.md b/exampleSite/content/content/emoji-support.md index 39026952..33f95e6d 100644 --- a/exampleSite/content/content/emoji-support.md +++ b/exampleSite/content/content/emoji-support.md @@ -1,10 +1,10 @@ --- authors: [michael_bluth] categories: [paige] -date: 2019-03-05 description: Guide to emoji usage in Hugo. tags: [content, content, emoji] title: Emoji Support +weight: 50 --- Emoji can be enabled in a Hugo project in a number of ways. diff --git a/exampleSite/content/content/markdown-syntax.md b/exampleSite/content/content/markdown-syntax.md index ce024944..75bb4988 100644 --- a/exampleSite/content/content/markdown-syntax.md +++ b/exampleSite/content/content/markdown-syntax.md @@ -1,10 +1,10 @@ --- authors: [michael_bluth] categories: [paige] -date: 2019-03-11 description: Sample article showcasing basic Markdown syntax and formatting for HTML elements. tags: [content, markdown, css, html] title: Markdown Syntax Guide +weight: 10 --- This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme. diff --git a/exampleSite/content/content/math-typesetting.md b/exampleSite/content/content/math-typesetting.md index 05febb4d..bb5a7a31 100644 --- a/exampleSite/content/content/math-typesetting.md +++ b/exampleSite/content/content/math-typesetting.md @@ -1,11 +1,11 @@ --- authors: [michael_bluth] -date: 2019-03-08 description: A brief guide to setup KaTeX. paige: math: true tags: [content, katex, math, typesetting] title: Math Typesetting +weight: 40 --- Mathematical notation in a Hugo project can be enabled by using third party JavaScript libraries. diff --git a/exampleSite/content/content/placeholder-text.md b/exampleSite/content/content/placeholder-text.md index f5447d24..3e90e83f 100644 --- a/exampleSite/content/content/placeholder-text.md +++ b/exampleSite/content/content/placeholder-text.md @@ -1,9 +1,9 @@ --- authors: [michael_bluth] -date: 2019-03-09 description: Lorem Ipsum Dolor Si Amet. tags: [content, markdown, text] title: Placeholder Text +weight: 30 --- Lorem est tota propiore conpellat pectoribus de pectora summo. Redit teque digerit hominumque toris verebor lumina non cervice subde tollit usus habet Arctonque, furores quas nec ferunt. Quoque montibus nunc caluere tempus inhospita parcite confusaque translucet patri vestro qui optatis lumine cognoscere flos nubis! Fronde ipsamque patulos Dryopen deorum. diff --git a/exampleSite/content/content/rich-content.md b/exampleSite/content/content/rich-content.md index 47135f1c..a91cc1aa 100644 --- a/exampleSite/content/content/rich-content.md +++ b/exampleSite/content/content/rich-content.md @@ -1,9 +1,9 @@ --- authors: [michael_bluth] -date: 2019-03-10 description: A brief description of Hugo Shortcodes. tags: [content, shortcodes, privacy] title: Rich Content +weight: 20 --- Hugo ships with several [Built-in Shortcodes](https://gohugo.io/content-management/shortcodes/#use-hugos-built-in-shortcodes) for rich content, along with a [Privacy Config](https://gohugo.io/about/hugo-and-gdpr/) and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds. diff --git a/exampleSite/content/layouts/home.md b/exampleSite/content/layouts/home.md index 41563bd2..17c5b612 100644 --- a/exampleSite/content/layouts/home.md +++ b/exampleSite/content/layouts/home.md @@ -1,7 +1,6 @@ --- authors: ["michael_bluth"] categories: ["paige"] -date: "2023-02-22" description: "Demonstration of the Paige home layout." layout: "paige/home" paige: @@ -106,6 +105,7 @@ paige: name: "YouTube" url: "https://youtube.com/user/username" title: "Home Layout" +weight: 10 --- Paige provides a `paige/home` layout for a home page. diff --git a/exampleSite/content/layouts/search.md b/exampleSite/content/layouts/search.md index 8ea69077..365cb983 100644 --- a/exampleSite/content/layouts/search.md +++ b/exampleSite/content/layouts/search.md @@ -1,11 +1,11 @@ --- authors: [michael_bluth] categories: [paige] -date: "2023-02-12" description: Demonstration of the Paige search layout. layout: paige/search tags: [layouts, search] title: Search Layout +weight: 20 --- Paige provides a `paige/search` layout for site search. diff --git a/exampleSite/content/shortcodes/code.md b/exampleSite/content/shortcodes/code.md index 6c005442..03c85250 100644 --- a/exampleSite/content/shortcodes/code.md +++ b/exampleSite/content/shortcodes/code.md @@ -1,10 +1,10 @@ --- authors: [michael_bluth] categories: [paige] -date: "2023-01-03" description: Demonstration of the Paige code shortcode. tags: [code, figures, shortcodes] title: Code Shortcode +weight: 30 --- Paige provides a `paige/code` shortcode for displaying code. diff --git a/exampleSite/content/shortcodes/figure.md b/exampleSite/content/shortcodes/figure.md index b39c5820..47be46f0 100644 --- a/exampleSite/content/shortcodes/figure.md +++ b/exampleSite/content/shortcodes/figure.md @@ -1,10 +1,10 @@ --- authors: [michael_bluth] categories: [paige] -date: "2023-01-01" description: Demonstration of the Paige figure shortcode. tags: [figures, shortcodes] title: Figure Shortcode +weight: 10 --- Paige provides a `paige/figure` shortcode for displaying content. diff --git a/exampleSite/content/shortcodes/gallery/index.md b/exampleSite/content/shortcodes/gallery/index.md index 4eba2bcc..e5c05a13 100644 --- a/exampleSite/content/shortcodes/gallery/index.md +++ b/exampleSite/content/shortcodes/gallery/index.md @@ -1,10 +1,10 @@ --- authors: [michael_bluth] categories: [paige] -date: "2023-01-05" description: Demonstration of the Paige gallery shortcode. tags: [figures, gallery, images, shortcodes] title: Gallery Shortcode +weight: 50 --- Paige provides a `paige/gallery` shortcode for displaying a list of images. diff --git a/exampleSite/content/shortcodes/image.md b/exampleSite/content/shortcodes/image.md index a75fa080..a4badc43 100644 --- a/exampleSite/content/shortcodes/image.md +++ b/exampleSite/content/shortcodes/image.md @@ -1,10 +1,10 @@ --- authors: [michael_bluth] categories: [paige] -date: "2023-01-04" description: Demonstration of the Paige image shortcode. tags: [figures, images, shortcodes] title: Image Shortcode +weight: 40 --- Paige provides a `paige/image` shortcode for displaying an image. diff --git a/exampleSite/content/shortcodes/quote.md b/exampleSite/content/shortcodes/quote.md index dc896973..26126096 100644 --- a/exampleSite/content/shortcodes/quote.md +++ b/exampleSite/content/shortcodes/quote.md @@ -1,10 +1,10 @@ --- authors: [michael_bluth] categories: [paige] -date: "2023-01-02" description: Demonstration of the Paige quote shortcode. tags: [figures, quotations, shortcodes] title: Quote Shortcode +weight: 20 --- Paige provides a `paige/quote` shortcode for displaying a quotation. diff --git a/exampleSite/content/shortcodes/vimeo.md b/exampleSite/content/shortcodes/vimeo.md index 0dc9aaca..adb759b1 100644 --- a/exampleSite/content/shortcodes/vimeo.md +++ b/exampleSite/content/shortcodes/vimeo.md @@ -1,10 +1,10 @@ --- authors: [michael_bluth] categories: [paige] -date: 2023-01-22 description: Demonstration of the Paige Vimeo shortcode. tags: [shortcodes, videos, vimeo] title: Vimeo Shortcode +weight: 70 --- Paige provides a `paige/vimeo` shortcode for playing Vimeo videos. diff --git a/exampleSite/content/shortcodes/youtube.md b/exampleSite/content/shortcodes/youtube.md index b3f6d92f..c253f893 100644 --- a/exampleSite/content/shortcodes/youtube.md +++ b/exampleSite/content/shortcodes/youtube.md @@ -1,10 +1,10 @@ --- authors: [michael_bluth] categories: [paige] -date: 2023-01-20 description: Demonstration of the Paige YouTube shortcode. tags: [shortcodes, videos, youtube] title: YouTube Shortcode +weight: 60 --- Paige provides a `paige/youtube` shortcode for playing YouTube videos.