From c921fe37b7dd757eb3afbf211f6426e9676c398a Mon Sep 17 00:00:00 2001 From: Will Faught Date: Wed, 22 Feb 2023 21:21:36 -0800 Subject: [PATCH] Replace Michael Bluth with Will Faught --- README.md | 10 +++++----- exampleSite/config.yaml | 4 ++-- 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 | 4 ++-- 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 +- 16 files changed, 22 insertions(+), 22 deletions(-) diff --git a/README.md b/README.md index 279c2812..237dbbb6 100644 --- a/README.md +++ b/README.md @@ -342,8 +342,8 @@ Optional site parameters: ```yaml authors: - michael_bluth: - name: "Michael Bluth" + will_faught: + name: "Will Faught" default: false # Credit this author in pages that have no authors parameter ``` @@ -353,9 +353,9 @@ Optional page parameters: ```yaml authors: -- "michael_bluth" # Credit the corresponding author in the site parameters -- author: "michael_bluth" # Credit the corresponding author in the site parameters -- name: "Michael Bluth" # Credit this author +- "will_faught" # Credit the corresponding author in the site parameters +- author: "will_faught" # Credit the corresponding author in the site parameters +- name: "Will Faught" # Credit this author link: "https://youtu.be/dQw4w9WgXcQ" # The reference for an anchor around the title ``` diff --git a/exampleSite/config.yaml b/exampleSite/config.yaml index 93d76c07..273dc656 100644 --- a/exampleSite/config.yaml +++ b/exampleSite/config.yaml @@ -52,8 +52,8 @@ outputs: paginate: 50 params: authors: - michael_bluth: - name: Michael Bluth + will_faught: + name: Will Faught paige: credit: link: diff --git a/exampleSite/content/content/emoji-support.md b/exampleSite/content/content/emoji-support.md index 33f95e6d..26a429e0 100644 --- a/exampleSite/content/content/emoji-support.md +++ b/exampleSite/content/content/emoji-support.md @@ -1,5 +1,5 @@ --- -authors: [michael_bluth] +authors: [will_faught] categories: [paige] description: Guide to emoji usage in Hugo. tags: [content, content, emoji] diff --git a/exampleSite/content/content/markdown-syntax.md b/exampleSite/content/content/markdown-syntax.md index 75bb4988..c3c36fc4 100644 --- a/exampleSite/content/content/markdown-syntax.md +++ b/exampleSite/content/content/markdown-syntax.md @@ -1,5 +1,5 @@ --- -authors: [michael_bluth] +authors: [will_faught] categories: [paige] description: Sample article showcasing basic Markdown syntax and formatting for HTML elements. tags: [content, markdown, css, html] diff --git a/exampleSite/content/content/math-typesetting.md b/exampleSite/content/content/math-typesetting.md index bb5a7a31..314cda80 100644 --- a/exampleSite/content/content/math-typesetting.md +++ b/exampleSite/content/content/math-typesetting.md @@ -1,5 +1,5 @@ --- -authors: [michael_bluth] +authors: [will_faught] description: A brief guide to setup KaTeX. paige: math: true diff --git a/exampleSite/content/content/placeholder-text.md b/exampleSite/content/content/placeholder-text.md index 3e90e83f..d46e76b4 100644 --- a/exampleSite/content/content/placeholder-text.md +++ b/exampleSite/content/content/placeholder-text.md @@ -1,5 +1,5 @@ --- -authors: [michael_bluth] +authors: [will_faught] description: Lorem Ipsum Dolor Si Amet. tags: [content, markdown, text] title: Placeholder Text diff --git a/exampleSite/content/content/rich-content.md b/exampleSite/content/content/rich-content.md index a91cc1aa..f195342c 100644 --- a/exampleSite/content/content/rich-content.md +++ b/exampleSite/content/content/rich-content.md @@ -1,5 +1,5 @@ --- -authors: [michael_bluth] +authors: [will_faught] description: A brief description of Hugo Shortcodes. tags: [content, shortcodes, privacy] title: Rich Content diff --git a/exampleSite/content/layouts/home.md b/exampleSite/content/layouts/home.md index 17c5b612..8d664779 100644 --- a/exampleSite/content/layouts/home.md +++ b/exampleSite/content/layouts/home.md @@ -1,5 +1,5 @@ --- -authors: ["michael_bluth"] +authors: ["will_faught"] categories: ["paige"] description: "Demonstration of the Paige home layout." layout: "paige/home" @@ -116,7 +116,7 @@ These are the parameters for this page: ```yaml --- -authors: ["michael_bluth"] +authors: ["will_faught"] categories: ["paige"] date: "2023-02-22" description: "Demonstration of the Paige home layout." diff --git a/exampleSite/content/layouts/search.md b/exampleSite/content/layouts/search.md index 365cb983..aeb033e5 100644 --- a/exampleSite/content/layouts/search.md +++ b/exampleSite/content/layouts/search.md @@ -1,5 +1,5 @@ --- -authors: [michael_bluth] +authors: [will_faught] categories: [paige] description: Demonstration of the Paige search layout. layout: paige/search diff --git a/exampleSite/content/shortcodes/code.md b/exampleSite/content/shortcodes/code.md index 03c85250..34994971 100644 --- a/exampleSite/content/shortcodes/code.md +++ b/exampleSite/content/shortcodes/code.md @@ -1,5 +1,5 @@ --- -authors: [michael_bluth] +authors: [will_faught] categories: [paige] description: Demonstration of the Paige code shortcode. tags: [code, figures, shortcodes] diff --git a/exampleSite/content/shortcodes/figure.md b/exampleSite/content/shortcodes/figure.md index 47be46f0..bacdf5b7 100644 --- a/exampleSite/content/shortcodes/figure.md +++ b/exampleSite/content/shortcodes/figure.md @@ -1,5 +1,5 @@ --- -authors: [michael_bluth] +authors: [will_faught] categories: [paige] description: Demonstration of the Paige figure shortcode. tags: [figures, shortcodes] diff --git a/exampleSite/content/shortcodes/gallery/index.md b/exampleSite/content/shortcodes/gallery/index.md index e5c05a13..1271c897 100644 --- a/exampleSite/content/shortcodes/gallery/index.md +++ b/exampleSite/content/shortcodes/gallery/index.md @@ -1,5 +1,5 @@ --- -authors: [michael_bluth] +authors: [will_faught] categories: [paige] description: Demonstration of the Paige gallery shortcode. tags: [figures, gallery, images, shortcodes] diff --git a/exampleSite/content/shortcodes/image.md b/exampleSite/content/shortcodes/image.md index a4badc43..41e31c76 100644 --- a/exampleSite/content/shortcodes/image.md +++ b/exampleSite/content/shortcodes/image.md @@ -1,5 +1,5 @@ --- -authors: [michael_bluth] +authors: [will_faught] categories: [paige] description: Demonstration of the Paige image shortcode. tags: [figures, images, shortcodes] diff --git a/exampleSite/content/shortcodes/quote.md b/exampleSite/content/shortcodes/quote.md index 26126096..52e751b0 100644 --- a/exampleSite/content/shortcodes/quote.md +++ b/exampleSite/content/shortcodes/quote.md @@ -1,5 +1,5 @@ --- -authors: [michael_bluth] +authors: [will_faught] categories: [paige] description: Demonstration of the Paige quote shortcode. tags: [figures, quotations, shortcodes] diff --git a/exampleSite/content/shortcodes/vimeo.md b/exampleSite/content/shortcodes/vimeo.md index adb759b1..58e4aef5 100644 --- a/exampleSite/content/shortcodes/vimeo.md +++ b/exampleSite/content/shortcodes/vimeo.md @@ -1,5 +1,5 @@ --- -authors: [michael_bluth] +authors: [will_faught] categories: [paige] description: Demonstration of the Paige Vimeo shortcode. tags: [shortcodes, videos, vimeo] diff --git a/exampleSite/content/shortcodes/youtube.md b/exampleSite/content/shortcodes/youtube.md index c253f893..23c47da6 100644 --- a/exampleSite/content/shortcodes/youtube.md +++ b/exampleSite/content/shortcodes/youtube.md @@ -1,5 +1,5 @@ --- -authors: [michael_bluth] +authors: [will_faught] categories: [paige] description: Demonstration of the Paige YouTube shortcode. tags: [shortcodes, videos, youtube]