diff --git a/README.md b/README.md
index 5980097a..ac4da1fc 100644
--- a/README.md
+++ b/README.md
@@ -177,7 +177,7 @@ color = "#0d6efd" # Bootstrap primary color and theme color for Safari and Windo
color_scheme = "auto" # Must be "auto", "dark", or "light"
date_format = ":date_long" # Hugo date format
external_link_new_tab = false # Open external links in new tabs
-file_edit_url = "" # Example: "https://github.com/willfaught/paige/edit/master/content/%s"
+file_edit_url = "" # Example: "https://github.com/account/project/edit/master/content/%s"
keyword_style = "text" # Must be "text" or "pills"
math = false # Enable math typesetting
menu_style = "links" # Must be "links", "pills", "tabs", or "underline"
@@ -274,15 +274,15 @@ page_link = "⏎" # If a front matter link is present, and link_to_page is false
authors = []
# Example:
# [[paige.feed.atom.authors]]
-# email = "will.faught@example.com"
-# name = "Will Faught"
-# url = "https://github.com/willfaught/paige"
+# email = "example@example.com"
+# name = "John Doe"
+# url = "https://github.com/account/project"
icon = "" # Example: "/icon.webp"
logo = "" # Example: "/logo.webp"
[paige.feed.rss]
-managing_editor = "" # Example: "will.faught@example.com (Will Faught)"
-web_master = "" # Example: "will.faught@example.com (Will Faught)"
+managing_editor = "" # Example: "example@example.com (John Doe)"
+web_master = "" # Example: "example@example.com (John Doe)"
[paige.search]
hide_page = false
@@ -586,7 +586,7 @@ Parameters:
title
Optional. String. The screen reader description and anchor title. Example: GitHub
.
url
- Optional. String. URL. Example: https://github.com/willfaught/paige
. E-mails in URLs with a mailto:
scheme are protected from web crawlers.
+ Optional. String. URL. Example: https://github.com/account/project
. E-mails in URLs with a mailto:
scheme are protected from web crawlers.
### Image
diff --git a/exampleSite/content/authors/will-faught/_index.md b/exampleSite/content/authors/author-demo/_index.md
similarity index 70%
rename from exampleSite/content/authors/will-faught/_index.md
rename to exampleSite/content/authors/author-demo/_index.md
index 41345593..674763c1 100644
--- a/exampleSite/content/authors/will-faught/_index.md
+++ b/exampleSite/content/authors/author-demo/_index.md
@@ -1,4 +1,4 @@
---
description: "Demonstration of an author."
-title: "Will Faught"
+title: "Author Demo"
---
diff --git a/exampleSite/content/content/alert.md b/exampleSite/content/content/alert.md
index b978e9a5..8743e25d 100644
--- a/exampleSite/content/content/alert.md
+++ b/exampleSite/content/content/alert.md
@@ -1,5 +1,5 @@
---
-authors: ["will-faught"]
+authors: ["author-demo"]
categories: ["content", "paige"]
date: "2023-09-18T21:21:05-07:00"
description: "An alert."
diff --git a/exampleSite/content/content/emoji-support.md b/exampleSite/content/content/emoji-support.md
index c731dcad..4d239228 100644
--- a/exampleSite/content/content/emoji-support.md
+++ b/exampleSite/content/content/emoji-support.md
@@ -1,5 +1,5 @@
---
-authors: ["will-faught"]
+authors: ["author-demo"]
categories: ["content", "paige"]
date: "2023-09-18T21:32:40-07:00"
description: "Guide to emoji usage in Hugo."
diff --git a/exampleSite/content/content/link.md b/exampleSite/content/content/link.md
index e4191f9b..b44db756 100644
--- a/exampleSite/content/content/link.md
+++ b/exampleSite/content/content/link.md
@@ -1,5 +1,5 @@
---
-authors: ["will-faught"]
+authors: ["author-demo"]
categories: ["content", "paige"]
date: "2023-09-24T21:29:30-07:00"
description: "A front matter link."
diff --git a/exampleSite/content/content/markdown-syntax.md b/exampleSite/content/content/markdown-syntax.md
index 33f59512..edb36e55 100644
--- a/exampleSite/content/content/markdown-syntax.md
+++ b/exampleSite/content/content/markdown-syntax.md
@@ -1,5 +1,5 @@
---
-authors: ["will-faught"]
+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."
diff --git a/exampleSite/content/content/math-typesetting.md b/exampleSite/content/content/math-typesetting.md
index 144d62d9..9d21a572 100644
--- a/exampleSite/content/content/math-typesetting.md
+++ b/exampleSite/content/content/math-typesetting.md
@@ -1,5 +1,5 @@
---
-authors: ["will-faught"]
+authors: ["author-demo"]
categories: ["content", "paige"]
date: "2023-09-18T21:33:03-07:00"
description: "A brief guide to setup KaTeX."
diff --git a/exampleSite/content/content/placeholder-text.md b/exampleSite/content/content/placeholder-text.md
index 830d8c41..ab3d567d 100644
--- a/exampleSite/content/content/placeholder-text.md
+++ b/exampleSite/content/content/placeholder-text.md
@@ -1,5 +1,5 @@
---
-authors: ["will-faught"]
+authors: ["author-demo"]
categories: ["content", "paige"]
date: "2023-09-18T21:33:16-07:00"
description: "Lorem Ipsum Dolor Si Amet."
diff --git a/exampleSite/content/content/rich-content.md b/exampleSite/content/content/rich-content.md
index 542c1d1e..2c248893 100644
--- a/exampleSite/content/content/rich-content.md
+++ b/exampleSite/content/content/rich-content.md
@@ -1,5 +1,5 @@
---
-authors: ["will-faught"]
+authors: ["author-demo"]
categories: ["content", "paige"]
date: "2023-09-18T21:33:24-07:00"
description: "A brief description of Hugo Shortcodes."
diff --git a/exampleSite/content/content/video.md b/exampleSite/content/content/video.md
index 890287ad..454d4be4 100644
--- a/exampleSite/content/content/video.md
+++ b/exampleSite/content/content/video.md
@@ -1,5 +1,5 @@
---
-authors: ["will-faught"]
+authors: ["author-demo"]
categories: ["content", "paige"]
date: "2023-09-24T21:29:31-07:00"
description: "Only a video."
diff --git a/exampleSite/content/customization/_index.md b/exampleSite/content/customization/_index.md
index 985f946b..1a7ecf97 100644
--- a/exampleSite/content/customization/_index.md
+++ b/exampleSite/content/customization/_index.md
@@ -1,5 +1,5 @@
---
-authors: ["will-faught"]
+authors: ["author-demo"]
categories: ["customization", "paige"]
description: "Demonstrations of Paige customization."
paige:
diff --git a/exampleSite/content/customization/show.md b/exampleSite/content/customization/show.md
index fe5bc84e..aeffb257 100644
--- a/exampleSite/content/customization/show.md
+++ b/exampleSite/content/customization/show.md
@@ -1,5 +1,5 @@
---
-authors: ["will-faught"]
+authors: ["author-demo"]
categories: ["customization", "paige"]
date: "2023-09-18T21:21:05-07:00"
description: "Demonstration of Paige customization that shows data."
diff --git a/exampleSite/content/customization/style.md b/exampleSite/content/customization/style.md
index e804419f..66118f52 100644
--- a/exampleSite/content/customization/style.md
+++ b/exampleSite/content/customization/style.md
@@ -1,5 +1,5 @@
---
-authors: ["will-faught"]
+authors: ["author-demo"]
categories: ["customization", "paige"]
date: "2023-09-18T20:21:05-07:00"
description: "Demonstration of Paige customization that styles data."
diff --git a/exampleSite/content/layouts/cloud/_index.md b/exampleSite/content/layouts/cloud/_index.md
index a9c7dfbe..bed9c4a0 100644
--- a/exampleSite/content/layouts/cloud/_index.md
+++ b/exampleSite/content/layouts/cloud/_index.md
@@ -1,5 +1,5 @@
---
-authors: ["will-faught"]
+authors: ["author-demo"]
categories: ["layouts", "paige"]
date: "2024-06-03T21:21:05-07:00"
description: "Demonstration of the Paige cloud layout."
diff --git a/exampleSite/content/layouts/search.md b/exampleSite/content/layouts/search.md
index 4ad70d33..3915f48c 100644
--- a/exampleSite/content/layouts/search.md
+++ b/exampleSite/content/layouts/search.md
@@ -1,5 +1,5 @@
---
-authors: ["will-faught"]
+authors: ["author-demo"]
categories: ["layouts", "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 4118dbf7..656c37b1 100644
--- a/exampleSite/content/shortcodes/code.md
+++ b/exampleSite/content/shortcodes/code.md
@@ -1,5 +1,5 @@
---
-authors: ["will-faught"]
+authors: ["author-demo"]
categories: ["paige", "shortcodes"]
date: "2023-09-18T21:34:51-07:00"
description: "Demonstration of the Paige code shortcode."
diff --git a/exampleSite/content/shortcodes/email.md b/exampleSite/content/shortcodes/email.md
index 72b3a40c..face1868 100644
--- a/exampleSite/content/shortcodes/email.md
+++ b/exampleSite/content/shortcodes/email.md
@@ -1,5 +1,5 @@
---
-authors: ["will-faught"]
+authors: ["author-demo"]
categories: ["paige", "shortcodes"]
date: "2023-09-18T21:34:58-07:00"
description: "Demonstration of the Paige email shortcode."
diff --git a/exampleSite/content/shortcodes/figure.md b/exampleSite/content/shortcodes/figure.md
index e0ce26cd..f0ed9089 100644
--- a/exampleSite/content/shortcodes/figure.md
+++ b/exampleSite/content/shortcodes/figure.md
@@ -1,5 +1,5 @@
---
-authors: ["will-faught"]
+authors: ["author-demo"]
categories: ["paige", "shortcodes"]
date: "2023-09-18T21:35:10-07:00"
description: "Demonstration of the Paige figure shortcode."
diff --git a/exampleSite/content/shortcodes/gallery/index.md b/exampleSite/content/shortcodes/gallery/index.md
index 6d699f23..02093610 100644
--- a/exampleSite/content/shortcodes/gallery/index.md
+++ b/exampleSite/content/shortcodes/gallery/index.md
@@ -1,5 +1,5 @@
---
-authors: ["will-faught"]
+authors: ["author-demo"]
categories: ["paige", "shortcodes"]
date: "2023-09-18T21:34:01-07:00"
description: "Demonstration of the Paige gallery shortcode."
diff --git a/exampleSite/content/shortcodes/icon.md b/exampleSite/content/shortcodes/icon.md
index 9d0a7c4a..6deb10af 100644
--- a/exampleSite/content/shortcodes/icon.md
+++ b/exampleSite/content/shortcodes/icon.md
@@ -1,5 +1,5 @@
---
-authors: ["will-faught"]
+authors: ["author-demo"]
categories: ["paige", "shortcodes"]
date: "2023-09-18T21:35:15-07:00"
description: "Demonstration of the Paige icon shortcode."
diff --git a/exampleSite/content/shortcodes/image.md b/exampleSite/content/shortcodes/image.md
index 69dbf3e2..3f2c3218 100644
--- a/exampleSite/content/shortcodes/image.md
+++ b/exampleSite/content/shortcodes/image.md
@@ -1,5 +1,5 @@
---
-authors: ["will-faught"]
+authors: ["author-demo"]
categories: ["paige", "shortcodes"]
date: "2023-09-18T21:35:22-07:00"
description: "Demonstration of the Paige image shortcode."
diff --git a/exampleSite/content/shortcodes/quote.md b/exampleSite/content/shortcodes/quote.md
index 685db14e..90e6957f 100644
--- a/exampleSite/content/shortcodes/quote.md
+++ b/exampleSite/content/shortcodes/quote.md
@@ -1,5 +1,5 @@
---
-authors: ["will-faught"]
+authors: ["author-demo"]
categories: ["paige", "shortcodes"]
date: "2023-09-18T21:35:28-07:00"
description: "Demonstration of the Paige quote shortcode."
diff --git a/exampleSite/content/shortcodes/vimeo.md b/exampleSite/content/shortcodes/vimeo.md
index 955aaec2..138c01d0 100644
--- a/exampleSite/content/shortcodes/vimeo.md
+++ b/exampleSite/content/shortcodes/vimeo.md
@@ -1,5 +1,5 @@
---
-authors: ["will-faught"]
+authors: ["author-demo"]
categories: ["paige", "shortcodes"]
date: "2023-09-18T21:35:34-07:00"
description: "Demonstration of the Paige Vimeo shortcode."
diff --git a/exampleSite/content/shortcodes/youtube.md b/exampleSite/content/shortcodes/youtube.md
index 5dd443c5..ef45d214 100644
--- a/exampleSite/content/shortcodes/youtube.md
+++ b/exampleSite/content/shortcodes/youtube.md
@@ -1,5 +1,5 @@
---
-authors: ["will-faught"]
+authors: ["author-demo"]
categories: ["paige", "shortcodes"]
date: "2023-09-18T21:35:40-07:00"
description: "Demonstration of the Paige YouTube shortcode."
diff --git a/exampleSite/hugo.toml b/exampleSite/hugo.toml
index 371e4832..a6381187 100644
--- a/exampleSite/hugo.toml
+++ b/exampleSite/hugo.toml
@@ -97,13 +97,13 @@ site_description = "Powerful, pliable pixel perfection"
site_title = "Paige"
[[params.paige.feed.atom.authors]]
-email = "will.faught@example.com"
-name = "Will Faught"
-url = "https://willfaught.com/paige"
+email = "example@example.com"
+name = "John Doe"
+url = "https://example.com"
[params.paige.feed.rss]
-managing_editor = "will.faught@example.com (Will Faught)"
-web_master = "will.faught@example.com (Will Faught)"
+managing_editor = "example@example.com (John Doe)"
+web_master = "example@example.com (John Doe)"
[taxonomies]
author = "authors"