Pārlūkot izejas kodu

getting rid of all the template content

Nate Johnston 8 mēneši atpakaļ
vecāks
revīzija
3ea8763343

+ 0 - 4
content/authors/_index.md

@@ -1,4 +0,0 @@
-+++
-description = "Browse by author."
-title = "Authors"
-+++

+ 0 - 8
content/authors/author-demo/_index.md

@@ -1,8 +0,0 @@
-+++
-description = "Demonstration of an author."
-title = "Author Demo"
-[paige.author]
-email = "example@example.com"
-name = "Author Demo"
-url = "https://example.com"
-+++

+ 0 - 5
content/categories/_index.md

@@ -1,5 +0,0 @@
-+++
-description = "Browse by category."
-layout = "paige/cloud"
-title = "Categories"
-+++

+ 0 - 4
content/categories/paige/_index.md

@@ -1,4 +0,0 @@
-+++
-description = "Demonstration of a category."
-title = "Paige"
-+++

+ 0 - 1
content/content/_index.md

@@ -1,4 +1,3 @@
 +++
-description = "Demonstrations of content."
 title = "Content"
 +++

+ 0 - 19
content/content/alert.md

@@ -1,19 +0,0 @@
-+++
-authors = ["author-demo"]
-categories = ["content", "paige"]
-description = "An alert."
-tags = ["alerts"]
-title = "Alert"
-[paige.alert]
-message = "Get more information <a href=\"#\" class=\"alert-link\">here</a>."
-type = "primary"
-+++
-
-This page has the following parameters:
-
-```yaml
-paige:
-  alert:
-    message: "Get more information <a href=\"#\" class=\"alert-link\">here</a>."
-    type: "primary"
-```

+ 0 - 67
content/content/emoji-support.md

@@ -1,67 +0,0 @@
-+++
-authors = ["author-demo"]
-categories = ["content", "paige"]
-description = "Guide to emoji usage in Hugo."
-tags = ["emoji"]
-title = "Emoji Support"
-+++
-
-<!--
-The MIT License (MIT)
-
-Copyright (c) 2014 Steve Francia
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
--->
-
-Emoji can be enabled in a Hugo project in a number of ways.
-<!--more-->
-The [`emojify`](https://gohugo.io/functions/emojify/) function can be called directly in templates or [Inline Shortcodes](https://gohugo.io/templates/shortcode-templates/#inline-shortcodes).
-
-To enable emoji globally, set `enableEmoji` to `true` in your site's [configuration](https://gohugo.io/getting-started/configuration/) and then you can type emoji shorthand codes directly in content files; e.g.
-
-<p><span class="nowrap"><span class="emojify">🙈</span> <code>:see_no_evil:</code></span>  <span class="nowrap"><span class="emojify">🙉</span> <code>:hear_no_evil:</code></span>  <span class="nowrap"><span class="emojify">🙊</span> <code>:speak_no_evil:</code></span></p>
-
-The [Emoji cheat sheet](http://www.emoji-cheat-sheet.com/) is a useful reference for emoji shorthand codes.
-
-***
-
-**N.B.** The above steps enable Unicode Standard emoji characters and sequences in Hugo, however the rendering of these glyphs depends on the browser and the platform. To style the emoji you can either use a third party emoji font or a font stack; e.g.
-
-{{< highlight html >}}
-.emoji {
-  font-family: Apple Color Emoji, Segoe UI Emoji, NotoColorEmoji, Segoe UI Symbol, Android Emoji, EmojiSymbols;
-}
-{{< /highlight >}}
-
-{{< css.inline >}}
-<style>
-.emojify {
-	font-family: Apple Color Emoji, Segoe UI Emoji, NotoColorEmoji, Segoe UI Symbol, Android Emoji, EmojiSymbols;
-	font-size: 2rem;
-	vertical-align: middle;
-}
-@media screen and (max-width:650px) {
-  .nowrap {
-    display: block;
-    margin: 25px 0;
-  }
-}
-</style>
-{{< /css.inline >}}

+ 0 - 10
content/content/link.md

@@ -1,10 +0,0 @@
-+++
-authors = ["author-demo"]
-categories = ["content", "paige"]
-description = "A front matter link."
-link = "https://willfaught.com/paige"
-tags = ["link"]
-title = "Link"
-+++
-
-It takes you to the home page.

+ 0 - 162
content/content/markdown-syntax.md

@@ -1,162 +0,0 @@
-+++
-authors = ["author-demo"]
-categories = ["content", "paige"]
-description = "Sample article showcasing basic Markdown syntax and formatting for HTML elements."
-tags = ["css", "html", "markdown"]
-title = "Markdown Syntax Guide"
-+++
-
-<!--
-The MIT License (MIT)
-
-Copyright (c) 2014 Steve Francia
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
--->
-
-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.
-<!--more-->
-
-## Headings
-
-The following HTML `<h2>`—`<h6>` elements represent five levels of section headings. `<h2>` is the highest section level while `<h6>` is the lowest.
-
-## H2
-### H3
-#### H4
-##### H5
-###### H6
-
-## Paragraph
-
-Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat.
-
-Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.
-
-## Blockquotes
-
-The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a `footer` or `cite` element, and optionally with in-line changes such as annotations and abbreviations.
-
-### Blockquote without attribution
-
-> Tiam, ad mint andaepu dandae nostion secatur sequo quae.
-> **Note** that you can use *Markdown syntax* within a blockquote.
-
-### Blockquote with attribution
-
-> Don't communicate by sharing memory, share memory by communicating.<br>
-> — <cite>Rob Pike[^1]</cite>
-
-[^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015.
-
-## Tables
-
-Tables aren't part of the core Markdown spec, but Hugo supports supports them out-of-the-box.
-
-   Name | Age
---------|------
-    Bob | 27
-  Alice | 23
-
-### Inline Markdown within tables
-
-| Italics   | Bold     | Code   |
-| --------  | -------- | ------ |
-| *italics* | **bold** | `code` |
-
-## Code Blocks
-
-### Code block with backticks
-
-```html
-<!doctype html>
-<html lang="en">
-<head>
-  <meta charset="utf-8">
-  <title>Example HTML5 Document</title>
-</head>
-<body>
-  <p>Test</p>
-</body>
-</html>
-```
-
-### Code block indented with four spaces
-
-    <!doctype html>
-    <html lang="en">
-    <head>
-      <meta charset="utf-8">
-      <title>Example HTML5 Document</title>
-    </head>
-    <body>
-      <p>Test</p>
-    </body>
-    </html>
-
-### Code block with Hugo's internal highlight shortcode
-
-{{< highlight html >}}
-<!doctype html>
-<html lang="en">
-<head>
-  <meta charset="utf-8">
-  <title>Example HTML5 Document</title>
-</head>
-<body>
-  <p>Test</p>
-</body>
-</html>
-{{< /highlight >}}
-
-## List Types
-
-### Ordered List
-
-1. First item
-2. Second item
-3. Third item
-
-### Unordered List
-
-* List item
-* Another item
-* And another item
-
-### Nested list
-
-* Fruit
-  * Apple
-  * Orange
-  * Banana
-* Dairy
-  * Milk
-  * Cheese
-
-## Other Elements — abbr, sub, sup, kbd, mark
-
-<abbr title="Graphics Interchange Format">GIF</abbr> is a bitmap image format.
-
-H<sub>2</sub>O
-
-X<sup>n</sup> + Y<sup>n</sup> = Z<sup>n</sup>
-
-Press <kbd><kbd>CTRL</kbd>+<kbd>ALT</kbd>+<kbd>Delete</kbd></kbd> to end the session.
-
-Most <mark>salamanders</mark> are nocturnal, and hunt for insects, worms, and other small creatures.

+ 0 - 64
content/content/math-typesetting.md

@@ -1,64 +0,0 @@
-+++
-authors = ["author-demo"]
-categories = ["content", "paige"]
-description = "A brief guide to setup KaTeX."
-tags = ["katex", "math", "typesetting"]
-title = "Math Typesetting"
-[paige]
-enable_math = true
-+++
-
-<!--
-The MIT License (MIT)
-
-Copyright (c) 2014 Steve Francia
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
--->
-
-Mathematical notation in a Hugo project can be enabled by using third party JavaScript libraries.
-<!--more-->
-
-In this example we will be using [KaTeX](https://katex.org/)
-
-- Create a partial under `/layouts/partials/math.html`
-- Within this partial reference the [Auto-render Extension](https://katex.org/docs/autorender.html) or host these scripts locally.
-- Include the partial in your templates like so:
-
-```
-{{ if or .Params.math .Site.Params.math }}
-{{ partial "math.html" . }}
-{{ end }}
-```
-
-- To enable KaTeX globally set the parameter `math` to `true` in a project's configuration
-- To enable KaTeX on a per page basis include the parameter `math: true` in content files
-
-**Note:** Use the online reference of [Supported TeX Functions](https://katex.org/docs/supported.html)
-
-## Examples
-
-<p>
-Inline math: \(\varphi = \dfrac{1+\sqrt5}{2}= 1.6180339887…\)
-</p>
-
-Block math:
-$$
- \varphi = 1+\frac{1} {1+\frac{1} {1+\frac{1} {1+\cdots} } }
-$$

+ 0 - 172
content/customizations/_index.md

@@ -1,172 +0,0 @@
-+++
-authors = ["author-demo"]
-categories = ["customization", "paige"]
-description = "Demonstrations of customizations."
-series = ["series-demo"]
-tags = ["sections"]
-title = "Customizations"
-[paige.pages]
-disable_authors = false
-disable_auto_schema = true
-disable_date = false
-disable_description = false
-disable_edit = false
-disable_history = false
-disable_keywords = false
-disable_next = false
-disable_prev = false
-disable_reading_time = false
-disable_series = false
-disable_title = false
-disable_toc = false
-disable_word_count = false
-full_width = true
-[paige.pages.base_schema]
-isAccessibleForFree = true
-isFamilyFriendly = true
-[paige.pages.base_schema.publisher]
-"@type" = "Organization"
-name = "Paige"
-url = "https://github.com/willfaught/paige"
-[paige.pages.microdata]
-itemid = "https://willfaught.com/paige/customizations/"
-itemscope = ""
-itemtype = "https://schema.org/HowTo"
-[[paige.pages.schemas]]
-"@context" = "https://schema.org"
-"@type" = "WebPage"
-name = "Customization"
-url = "https://willfaught.com/paige/customizations/"
-[paige.site]
-color = "#df4655"
-color_scheme = "dark"
-credit = '<a class="link-secondary text-decoration-none" href="https://github.com/willfaught/paige">Paige Theme</a>'
-date_format = ":date_full"
-description = "Mighty, malleable media mastery"
-disable_breadcrumbs = false
-disable_credit = false
-disable_license = false
-edit_url = "https://github.com/willfaught/paige/edit/master/example/content/%s"
-external_link_new_tab = true
-history_url = "https://github.com/willfaught/paige/commits/master/example/content/%s"
-keyword_style = "pills"
-license = "EUPL License"
-menu_style = "tabs"
-[paige.site.base_schema]
-isAccessibleForFree = true
-isFamilyFriendly = true
-[paige.site.base_schema.publisher]
-"@type" = "Organization"
-name = "Paige"
-url = "https://github.com/willfaught/paige"
-[[paige.site.schemas]]
-"@context" = "https://schema.org"
-"@type" = "WebSite"
-name = "Paige"
-url = "https://willfaught.com/paige/"
-[paige.subpages]
-disable_authors = false
-disable_date = false
-disable_keywords = false
-disable_reading_time = false
-disable_series = false
-disable_summary = false
-disable_word_count = false
-+++
-
-This site hides some section page data by default. This page shows it all.
-
-<!--more-->
-
-## Parameters
-
-This page has the following parameters:
-
-```toml
-[paige.pages]
-
-disable_authors = false
-disable_auto_schema = true
-disable_date = false
-disable_description = false
-disable_edit = false
-disable_history = false
-disable_keywords = false
-disable_next = false
-disable_prev = false
-disable_reading_time = false
-disable_series = false
-disable_title = false
-disable_toc = false
-disable_word_count = false
-full_width = true
-
-[paige.pages.base_schema]
-
-isAccessibleForFree = true
-isFamilyFriendly = true
-
-[paige.pages.base_schema.publisher]
-
-"@type" = "Organization"
-name = "Paige"
-url = "https://github.com/willfaught/paige"
-
-[paige.pages.microdata]
-
-itemid = "https://willfaught.com/paige/customizations/"
-itemscope = ""
-itemtype = "https://schema.org/HowTo"
-
-[[paige.pages.schemas]]
-
-"@context" = "https://schema.org"
-"@type" = "WebPage"
-name = "Customization"
-url = "https://willfaught.com/paige/customizations/"
-
-[paige.site]
-
-color = "#df4655"
-color_scheme = "dark"
-credit = '<a class="link-secondary text-decoration-none" href="https://github.com/willfaught/paige">Paige Theme</a>'
-date_format = ":date_full"
-description = "Mighty, malleable media mastery"
-disable_breadcrumbs = false
-disable_credit = false
-disable_license = false
-edit_url = "https://github.com/willfaught/paige/edit/master/example/content/%s"
-external_link_new_tab = true
-history_url = "https://github.com/willfaught/paige/commits/master/example/content/%s"
-keyword_style = "pills"
-license = "EUPL License"
-menu_style = "tabs"
-
-[paige.site.base_schema]
-
-isAccessibleForFree = true
-isFamilyFriendly = true
-
-[paige.site.base_schema.publisher]
-
-"@type" = "Organization"
-name = "Paige"
-url = "https://github.com/willfaught/paige"
-
-[[paige.site.schemas]]
-
-"@context" = "https://schema.org"
-"@type" = "WebSite"
-name = "Paige"
-url = "https://willfaught.com/paige/"
-
-[paige.subpages]
-
-disable_authors = false
-disable_date = false
-disable_keywords = false
-disable_reading_time = false
-disable_series = false
-disable_summary = false
-disable_word_count = false
-```

+ 0 - 155
content/customizations/show.md

@@ -1,155 +0,0 @@
-+++
-authors = ["author-demo"]
-categories = ["customization", "paige"]
-date = 2023-09-18T21:21:05-07:00
-description = "Demonstration of a customization that shows all data."
-series = ["series-demo"]
-tags = ["show", "singles"]
-title = "Show Data"
-[paige.pages]
-disable_authors = false
-disable_auto_schema = true
-disable_date = false
-disable_description = false
-disable_edit = false
-disable_history = false
-disable_keywords = false
-disable_next = false
-disable_prev = false
-disable_reading_time = false
-disable_series = false
-disable_title = false
-disable_toc = false
-disable_word_count = false
-full_width = true
-[paige.pages.base_schema]
-isAccessibleForFree = true
-isFamilyFriendly = true
-[paige.pages.base_schema.publisher]
-"@type" = "Organization"
-name = "Paige"
-url = "https://github.com/willfaught/paige"
-[paige.pages.microdata]
-itemid = "https://willfaught.com/paige/customizations/show/"
-itemscope = ""
-itemtype = "https://schema.org/HowTo"
-[[paige.pages.schemas]]
-"@context" = "https://schema.org"
-"@type" = "WebPage"
-name = "Show"
-url = "https://willfaught.com/paige/customizations/show/"
-[paige.site]
-color = "#df4655"
-color_scheme = "dark"
-credit = '<a class="link-secondary text-decoration-none" href="https://github.com/willfaught/paige">Paige Theme</a>'
-date_format = ":date_full"
-description = "Mighty, malleable media mastery"
-disable_breadcrumbs = false
-disable_credit = false
-disable_license = false
-edit_url = "https://github.com/willfaught/paige/edit/master/example/content/%s"
-external_link_new_tab = true
-history_url = "https://github.com/willfaught/paige/commits/master/example/content/%s"
-keyword_style = "pills"
-license = "EUPL License"
-menu_style = "tabs"
-[paige.site.base_schema]
-isAccessibleForFree = true
-isFamilyFriendly = true
-[paige.site.base_schema.publisher]
-"@type" = "Organization"
-name = "Paige"
-url = "https://github.com/willfaught/paige"
-[[paige.site.schemas]]
-"@context" = "https://schema.org"
-"@type" = "WebSite"
-name = "Paige"
-url = "https://willfaught.com/paige/"
-+++
-
-This page shows some data that the rest of the site hides.
-
-<!--more-->
-
-## Parameters
-
-This page has the following parameters:
-
-```toml
-[paige.pages]
-
-disable_authors = false
-disable_auto_schema = true
-disable_date = false
-disable_description = false
-disable_edit = false
-disable_history = false
-disable_keywords = false
-disable_next = false
-disable_prev = false
-disable_reading_time = false
-disable_series = false
-disable_title = false
-disable_toc = false
-disable_word_count = false
-full_width = true
-
-[paige.pages.base_schema]
-
-isAccessibleForFree = true
-isFamilyFriendly = true
-
-[paige.pages.base_schema.publisher]
-
-"@type" = "Organization"
-name = "Paige"
-url = "https://github.com/willfaught/paige"
-
-[paige.pages.microdata]
-
-itemid = "https://willfaught.com/paige/customizations/show/"
-itemscope = ""
-itemtype = "https://schema.org/HowTo"
-
-[[paige.pages.schemas]]
-
-"@context" = "https://schema.org"
-"@type" = "WebPage"
-name = "Show"
-url = "https://willfaught.com/paige/customizations/show/"
-
-[paige.site]
-
-color = "#df4655"
-color_scheme = "dark"
-credit = '<a class="link-secondary text-decoration-none" href="https://github.com/willfaught/paige">Paige Theme</a>'
-date_format = ":date_full"
-description = "Mighty, malleable media mastery"
-disable_breadcrumbs = false
-disable_credit = false
-disable_license = false
-edit_url = "https://github.com/willfaught/paige/edit/master/example/content/%s"
-external_link_new_tab = true
-history_url = "https://github.com/willfaught/paige/commits/master/example/content/%s"
-keyword_style = "pills"
-license = "EUPL License"
-menu_style = "tabs"
-
-[paige.site.base_schema]
-
-isAccessibleForFree = true
-isFamilyFriendly = true
-
-[paige.site.base_schema.publisher]
-
-"@type" = "Organization"
-name = "Paige"
-url = "https://github.com/willfaught/paige"
-
-[[paige.site.schemas]]
-
-"@context" = "https://schema.org"
-"@type" = "WebSite"
-name = "Paige"
-url = "https://willfaught.com/paige/"
-```

+ 0 - 203
content/customizations/style.md

@@ -1,203 +0,0 @@
-+++
-authors = ["author-demo"]
-categories = ["customization", "paige"]
-date = 2023-09-18T20:21:05-07:00
-description = "Demonstration of a customization that styles all data."
-series = ["series-demo"]
-tags = ["singles", "style"]
-title = "Style Data"
-[paige]
-style = """
-#paige-page-authors,
-#paige-page-content,
-#paige-page-date,
-#paige-page-description,
-#paige-page-file,
-#paige-page-keywords,
-#paige-page-reading-time,
-#paige-page-series,
-#paige-page-siblings,
-#paige-page-title,
-#paige-page-toc,
-#paige-site-breadcrumbs,
-#paige-site-copyright,
-#paige-site-credit,
-#paige-site-description,
-#paige-site-license,
-#paige-site-menu,
-#paige-site-title {
-    font-style: italic;
-}
-"""
-[paige.pages]
-disable_authors = false
-disable_auto_schema = true
-disable_date = false
-disable_description = false
-disable_edit = false
-disable_history = false
-disable_keywords = false
-disable_next = false
-disable_prev = false
-disable_reading_time = false
-disable_series = false
-disable_title = false
-disable_toc = false
-disable_word_count = false
-full_width = true
-[paige.pages.base_schema]
-isAccessibleForFree = true
-isFamilyFriendly = true
-[paige.pages.base_schema.publisher]
-"@type" = "Organization"
-name = "Paige"
-url = "https://github.com/willfaught/paige"
-[paige.pages.microdata]
-itemid = "https://willfaught.com/paige/customizations/style/"
-itemscope = ""
-itemtype = "https://schema.org/HowTo"
-[[paige.pages.schemas]]
-"@context" = "https://schema.org"
-"@type" = "WebPage"
-name = "Style"
-url = "https://willfaught.com/paige/customizations/style/"
-[paige.site]
-color = "#df4655"
-color_scheme = "dark"
-credit = '<a class="link-secondary text-decoration-none" href="https://github.com/willfaught/paige">Paige Theme</a>'
-date_format = ":date_full"
-description = "Mighty, malleable media mastery"
-disable_breadcrumbs = false
-disable_credit = false
-disable_license = false
-edit_url = "https://github.com/willfaught/paige/edit/master/example/content/%s"
-external_link_new_tab = true
-history_url = "https://github.com/willfaught/paige/commits/master/example/content/%s"
-keyword_style = "pills"
-license = "EUPL License"
-menu_style = "tabs"
-[paige.site.base_schema]
-isAccessibleForFree = true
-isFamilyFriendly = true
-[paige.site.base_schema.publisher]
-"@type" = "Organization"
-name = "Paige"
-url = "https://github.com/willfaught/paige"
-[[paige.site.schemas]]
-"@context" = "https://schema.org"
-"@type" = "WebSite"
-name = "Paige"
-url = "https://willfaught.com/paige/"
-+++
-
-This page styles some data differently than the rest of the site.
-
-<!--more-->
-
-## Parameters
-
-This page has the following parameters:
-
-```toml
-[paige]
-
-style = """
-#paige-page-authors,
-#paige-page-content,
-#paige-page-date,
-#paige-page-description,
-#paige-page-file,
-#paige-page-keywords,
-#paige-page-reading-time,
-#paige-page-series,
-#paige-page-siblings,
-#paige-page-title,
-#paige-page-toc,
-#paige-site-breadcrumbs,
-#paige-site-copyright,
-#paige-site-credit,
-#paige-site-description,
-#paige-site-license,
-#paige-site-menu,
-#paige-site-title {
-    font-style: italic;
-}
-"""
-
-[paige.pages]
-
-disable_authors = false
-disable_auto_schema = true
-disable_date = false
-disable_description = false
-disable_edit = false
-disable_history = false
-disable_keywords = false
-disable_next = false
-disable_prev = false
-disable_reading_time = false
-disable_series = false
-disable_title = false
-disable_toc = false
-disable_word_count = false
-full_width = true
-
-[paige.pages.base_schema]
-
-isAccessibleForFree = true
-isFamilyFriendly = true
-
-[paige.pages.base_schema.publisher]
-
-"@type" = "Organization"
-name = "Paige"
-url = "https://github.com/willfaught/paige"
-
-[paige.pages.microdata]
-
-itemid = "https://willfaught.com/paige/customizations/"
-itemscope = ""
-itemtype = "https://schema.org/HowTo"
-
-[[paige.pages.schemas]]
-
-"@context" = "https://schema.org"
-"@type" = "WebPage"
-name = "Style"
-url = "https://willfaught.com/paige/customizations/"
-
-[paige.site]
-
-color = "#df4655"
-color_scheme = "dark"
-credit = '<a class="link-secondary text-decoration-none" href="https://github.com/willfaught/paige">Paige Theme</a>'
-date_format = ":date_full"
-description = "Mighty, malleable media mastery"
-disable_breadcrumbs = false
-disable_credit = false
-disable_license = false
-edit_url = "https://github.com/willfaught/paige/edit/master/example/content/%s"
-external_link_new_tab = true
-history_url = "https://github.com/willfaught/paige/commits/master/example/content/%s"
-keyword_style = "pills"
-license = "EUPL License"
-menu_style = "tabs"
-
-[paige.site.base_schema]
-
-isAccessibleForFree = true
-isFamilyFriendly = true
-
-[paige.site.base_schema.publisher]
-
-"@type" = "Organization"
-name = "Paige"
-url = "https://github.com/willfaught/paige"
-
-[[paige.site.schemas]]
-
-"@context" = "https://schema.org"
-"@type" = "WebSite"
-name = "Paige"
-url = "https://willfaught.com/paige/"
-```

+ 0 - 4
content/layouts/_index.md

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

+ 0 - 20
content/layouts/cloud/_index.md

@@ -1,20 +0,0 @@
-+++
-authors = ["author-demo"]
-categories = ["layouts", "paige"]
-description = "Demonstration of the cloud layout."
-layout = "paige/cloud"
-tags = ["cloud"]
-title = "Cloud"
-+++
-
-The `paige/cloud` layout displays list page links as a link cloud.
-
-<!--more-->
-
-This page has the following parameters:
-
-```yaml
-layout: "paige/cloud"
-```
-
-Result:

+ 0 - 3
content/layouts/cloud/apple.md

@@ -1,3 +0,0 @@
-+++
-title = "Apple"
-+++

+ 0 - 3
content/layouts/cloud/banana.md

@@ -1,3 +0,0 @@
-+++
-title = "Banana"
-+++

+ 0 - 3
content/layouts/cloud/cantaloupe.md

@@ -1,3 +0,0 @@
-+++
-title = "Cantaloupe"
-+++

+ 0 - 30
content/layouts/search.md

@@ -1,30 +0,0 @@
-+++
-authors = ["author-demo"]
-categories = ["layouts", "paige"]
-description = "Demonstration of the search layout."
-layout = "paige/search"
-tags = ["search"]
-title = "Search"
-+++
-
-The `paige/search` layout provides site search.
-
-<!--more-->
-
-Example `config.yaml`:
-
-```yaml
-outputs:
-  home: ["atom", "html", "paige-search", "rss"]
-```
-
-Example `content/layouts/search.md`:
-
-```yaml
----
-layout: "paige/search"
-title: "Search"
----
-```
-
-Result:

+ 0 - 4
content/series/_index.md

@@ -1,4 +0,0 @@
-+++
-description = "Browse by series."
-title = "Series"
-+++

+ 0 - 4
content/series/series-demo/_index.md

@@ -1,4 +0,0 @@
-+++
-description = "Demonstration of a series."
-title = "Series Demo"
-+++

+ 0 - 5
content/tags/_index.md

@@ -1,5 +0,0 @@
-+++
-description = "Browse by tag."
-layout = "paige/cloud"
-title = "Tags"
-+++

+ 0 - 4
content/tags/sections/_index.md

@@ -1,4 +0,0 @@
-+++
-description = "Demonstration of a tag."
-title = "Sections"
-+++