Bulk changes for favicon, site title and subtitle rewording, and playing with tags / categories.
BIN
assets/img/veganarchism.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
@@ -3,6 +3,8 @@ title: "Simply Seasoned Dahl w/ Zucchini"
|
|||||||
author: 'Chad Michael "Bug" Greenwood'
|
author: 'Chad Michael "Bug" Greenwood'
|
||||||
draft: no
|
draft: no
|
||||||
tags: ["food", "pressure cooker", "rice", "lentils", "dahl", "vegetables", "curry"]
|
tags: ["food", "pressure cooker", "rice", "lentils", "dahl", "vegetables", "curry"]
|
||||||
|
categories: ["recipes"]
|
||||||
|
series: ["curries"]
|
||||||
date: "2025-09-01"
|
date: "2025-09-01"
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -3,6 +3,8 @@ title: "Wooden Camping Chair!"
|
|||||||
author: 'Chad Michael "Bug" Greenwood'
|
author: 'Chad Michael "Bug" Greenwood'
|
||||||
draft: no
|
draft: no
|
||||||
tags: ["crafts", "wood", "woodworking", "outdoors", "camping"]
|
tags: ["crafts", "wood", "woodworking", "outdoors", "camping"]
|
||||||
|
categories: ["recipes"]
|
||||||
|
series: ["chairs"]
|
||||||
date: "2025-09-15"
|
date: "2025-09-15"
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
201
hugo.toml
@@ -1,10 +1,112 @@
|
|||||||
baseURL = '/'
|
baseURL = 'https://recipes.hyperling.com'
|
||||||
languageCode = 'en-us'
|
languageCode = 'en-us'
|
||||||
title = "Hyperling's Blog"
|
title = "Hyperling's Works"
|
||||||
subtitle = "My recipes, blogposts, musings, and more."
|
subtitle = "My recipes, blogposts, musings, and more."
|
||||||
|
|
||||||
|
# Allow direct HTML.
|
||||||
markup.goldmark.renderer.unsafe = true
|
markup.goldmark.renderer.unsafe = true
|
||||||
|
|
||||||
|
paginate = 10
|
||||||
|
|
||||||
|
# Seems pretty good, just need to add more config params so it acts better.
|
||||||
|
theme = "hello-friend-ng"
|
||||||
|
|
||||||
|
# Favicon documentation for this theme.
|
||||||
|
# https://github.com/rhazdon/hugo-theme-hello-friend-ng/blob/master/docs/favicons.md
|
||||||
|
|
||||||
|
###
|
||||||
|
# The parameters below were copied, modified, or inspired from:
|
||||||
|
# https://github.com/rhazdon/hugo-theme-hello-friend-ng?tab=readme-ov-file#how-to-configure
|
||||||
|
[params]
|
||||||
|
dateform = "Jan 2, 2006"
|
||||||
|
dateformShort = "Jan 2"
|
||||||
|
dateformNum = "2006-01-02"
|
||||||
|
dateformNumTime = "2006-01-02 15:04"
|
||||||
|
|
||||||
|
# Subtitle for home
|
||||||
|
homeSubtitle = "Blogposts, recipes, musings, and more."
|
||||||
|
|
||||||
|
# Set disableReadOtherPosts to true in order to hide the links to other posts.
|
||||||
|
disableReadOtherPosts = false
|
||||||
|
|
||||||
|
# Enable sharing buttons, if you like
|
||||||
|
enableSharingButtons = false
|
||||||
|
|
||||||
|
# Show a global language switcher in the navigation bar
|
||||||
|
enableGlobalLanguageMenu = false
|
||||||
|
|
||||||
|
# Metadata mostly used in document's head
|
||||||
|
description = "Written works by Hyperling."
|
||||||
|
keywords = "homepage, blog, recipes, crafts, food, seasonings, woodworking, poetry, poems"
|
||||||
|
images = [""]
|
||||||
|
|
||||||
|
[taxonomies]
|
||||||
|
category = "categories"
|
||||||
|
tag = "tags"
|
||||||
|
series = "series"
|
||||||
|
|
||||||
|
[languages]
|
||||||
|
[languages.en]
|
||||||
|
title = "Hyperling's Written Works"
|
||||||
|
keywords = ""
|
||||||
|
copyright = '<a href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank" rel="noopener">CC BY-NC 4.0</a>'
|
||||||
|
readOtherPosts = "Read other posts"
|
||||||
|
|
||||||
|
[languages.en.params]
|
||||||
|
#subtitle = "Blogposts, recipes, musings, and more."
|
||||||
|
|
||||||
|
[languages.en.params.logo]
|
||||||
|
logoText = "Hyperling's Works"
|
||||||
|
logoHomeLink = "/"
|
||||||
|
# or
|
||||||
|
#
|
||||||
|
# path = "/img/your-example-logo.svg"
|
||||||
|
# alt = "Your example logo alt text"
|
||||||
|
|
||||||
|
# [languages.es]
|
||||||
|
# title = "Hola Amigo!"
|
||||||
|
# keywords = ""
|
||||||
|
# copyright = '<a href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank" rel="noopener">CC BY-NC 4.0</a>'
|
||||||
|
# readOtherPosts = "Read other posts"
|
||||||
|
|
||||||
|
# And you can even create generic menu
|
||||||
|
[[menu.main]]
|
||||||
|
identifier = "00-all"
|
||||||
|
name = "All"
|
||||||
|
url = "/posts"
|
||||||
|
|
||||||
|
[[menu.main]]
|
||||||
|
identifier = "20-food"
|
||||||
|
name = "Food"
|
||||||
|
url = "/tags/food"
|
||||||
|
|
||||||
|
[[menu.main]]
|
||||||
|
identifier = "30-crafts"
|
||||||
|
name = "Crafts"
|
||||||
|
url = "/tags/crafts"
|
||||||
|
|
||||||
|
#[[menu.main]]
|
||||||
|
# identifier = "50-blog"
|
||||||
|
# name = "Blogposts"
|
||||||
|
# url = "/tags/blog"
|
||||||
|
|
||||||
|
#[[menu.main]]
|
||||||
|
# identifier = "60-poetry"
|
||||||
|
# name = "Poetry"
|
||||||
|
# url = "/tags/poem"
|
||||||
|
|
||||||
|
[[menu.main]]
|
||||||
|
identifier = "91-books"
|
||||||
|
name = "eBooks"
|
||||||
|
url = "https://hyperling.com/books"
|
||||||
|
|
||||||
|
# End parameters related to:
|
||||||
|
# https://github.com/rhazdon/hugo-theme-hello-friend-ng?tab=readme-ov-file#how-to-configure
|
||||||
|
###
|
||||||
|
|
||||||
|
## Failed Themes ##
|
||||||
|
# Do not go back to these unless figuring out what was done wrong.
|
||||||
|
|
||||||
# not functioning well
|
# not functioning well
|
||||||
#theme = "recipes"
|
#theme = "recipes"
|
||||||
|
|
||||||
@@ -24,98 +126,3 @@ markup.goldmark.renderer.unsafe = true
|
|||||||
# but FAILS at monospace fonts in code blocks and CSS for URLs is horrible.
|
# but FAILS at monospace fonts in code blocks and CSS for URLs is horrible.
|
||||||
# Could maybe be modified to serve well enough.
|
# Could maybe be modified to serve well enough.
|
||||||
#theme = "hugo-classic"
|
#theme = "hugo-classic"
|
||||||
|
|
||||||
# testing...
|
|
||||||
# Seems pretty good, just need to add more config params so it acts better.
|
|
||||||
theme = "hello-friend-ng"
|
|
||||||
paginate = 10
|
|
||||||
|
|
||||||
###
|
|
||||||
# The parameters below were copied, modified, or inspired from:
|
|
||||||
# https://github.com/rhazdon/hugo-theme-hello-friend-ng?tab=readme-ov-file#how-to-configure
|
|
||||||
[params]
|
|
||||||
dateform = "Jan 2, 2006"
|
|
||||||
dateformShort = "Jan 2"
|
|
||||||
dateformNum = "2006-01-02"
|
|
||||||
dateformNumTime = "2006-01-02 15:04"
|
|
||||||
|
|
||||||
# Subtitle for home
|
|
||||||
homeSubtitle = "My short form written works. For longer forms, see hyperling.com/books."
|
|
||||||
|
|
||||||
# Set disableReadOtherPosts to true in order to hide the links to other posts.
|
|
||||||
disableReadOtherPosts = false
|
|
||||||
|
|
||||||
# Enable sharing buttons, if you like
|
|
||||||
enableSharingButtons = false
|
|
||||||
|
|
||||||
# Show a global language switcher in the navigation bar
|
|
||||||
enableGlobalLanguageMenu = false
|
|
||||||
|
|
||||||
# Metadata mostly used in document's head
|
|
||||||
description = "Recipes by Hyperling."
|
|
||||||
keywords = "homepage, blog, recipes, crafts, food, seasonings, woodworking"
|
|
||||||
images = [""]
|
|
||||||
|
|
||||||
[taxonomies]
|
|
||||||
category = "blog"
|
|
||||||
tag = "tags"
|
|
||||||
series = "series"
|
|
||||||
|
|
||||||
[languages]
|
|
||||||
[languages.en]
|
|
||||||
title = "Hyperling's Written Works"
|
|
||||||
keywords = ""
|
|
||||||
copyright = '<a href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank" rel="noopener">CC BY-NC 4.0</a>'
|
|
||||||
readOtherPosts = "Read other posts"
|
|
||||||
|
|
||||||
[languages.en.params]
|
|
||||||
subtitle = "My recipes, blogposts, musings, and more."
|
|
||||||
|
|
||||||
[languages.en.params.logo]
|
|
||||||
logoText = "Hyperling's Blog"
|
|
||||||
logoHomeLink = "/"
|
|
||||||
# or
|
|
||||||
#
|
|
||||||
# path = "/img/your-example-logo.svg"
|
|
||||||
# alt = "Your example logo alt text"
|
|
||||||
|
|
||||||
# And you can even create generic menu
|
|
||||||
[[menu.main]]
|
|
||||||
identifier = "00-all"
|
|
||||||
name = "All"
|
|
||||||
url = "/posts"
|
|
||||||
|
|
||||||
[[menu.main]]
|
|
||||||
identifier = "20-food"
|
|
||||||
name = "Food"
|
|
||||||
url = "/tags/food"
|
|
||||||
|
|
||||||
[[menu.main]]
|
|
||||||
identifier = "30-crafts"
|
|
||||||
name = "Crafts"
|
|
||||||
url = "/tags/crafts"
|
|
||||||
|
|
||||||
#[[menu.main]]
|
|
||||||
# identifier = "50-blog"
|
|
||||||
# name = "Blogposts"
|
|
||||||
# url = "/tags/blog"
|
|
||||||
|
|
||||||
#[[menu.main]]
|
|
||||||
# identifier = "60-poetry"
|
|
||||||
# name = "Poetry"
|
|
||||||
# url = "/tags/poem"
|
|
||||||
|
|
||||||
[[menu.main]]
|
|
||||||
identifier = "91-books"
|
|
||||||
name = "eBooks"
|
|
||||||
url = "https://hyperling.com/books"
|
|
||||||
|
|
||||||
# [languages.es]
|
|
||||||
# title = "Hola Amigo!"
|
|
||||||
# keywords = ""
|
|
||||||
# copyright = '<a href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank" rel="noopener">CC BY-NC 4.0</a>'
|
|
||||||
# readOtherPosts = "Read other posts"
|
|
||||||
|
|
||||||
# End parameters related to:
|
|
||||||
# https://github.com/rhazdon/hugo-theme-hello-friend-ng?tab=readme-ov-file#how-to-configure
|
|
||||||
###
|
|
||||||
|
|||||||
7
layouts/partials/favicons.html
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
|
||||||
|
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
|
||||||
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||||
|
<link rel="shortcut icon" href="/favicon.ico" />
|
||||||
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
|
||||||
|
<meta name="apple-mobile-web-app-title" content="HyperMusings" />
|
||||||
|
<link rel="manifest" href="/site.webmanifest" />
|
||||||
BIN
static/apple-touch-icon.png
Normal file
|
After Width: | Height: | Size: 6.6 KiB |
BIN
static/favicon-96x96.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
static/favicon.ico
Normal file
|
After Width: | Height: | Size: 15 KiB |
17
static/favicon.svg
Normal file
|
After Width: | Height: | Size: 34 KiB |
21
static/site.webmanifest
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
{
|
||||||
|
"name": "HyperMusings",
|
||||||
|
"short_name": "HyperMusings",
|
||||||
|
"icons": [
|
||||||
|
{
|
||||||
|
"src": "/web-app-manifest-192x192.png",
|
||||||
|
"sizes": "192x192",
|
||||||
|
"type": "image/png",
|
||||||
|
"purpose": "maskable"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "/web-app-manifest-512x512.png",
|
||||||
|
"sizes": "512x512",
|
||||||
|
"type": "image/png",
|
||||||
|
"purpose": "maskable"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"theme_color": "#010101",
|
||||||
|
"background_color": "#cccccc",
|
||||||
|
"display": "standalone"
|
||||||
|
}
|
||||||
BIN
static/web-app-manifest-192x192.png
Normal file
|
After Width: | Height: | Size: 7.4 KiB |
BIN
static/web-app-manifest-512x512.png
Normal file
|
After Width: | Height: | Size: 38 KiB |