-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
64 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
+++ | ||
title = 'About' | ||
+++ | ||
|
||
Welcome to my little blog where I document my adventures with computers. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
+++ | ||
title = 'Hello World' | ||
+++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,59 @@ | ||
baseURL = 'https://example.org/' | ||
baseURL = 'https://ca-hu.github.io' | ||
languageCode = 'en-us' | ||
title = 'My New Hugo Site' | ||
title = 'ca-hu - adventures with computers' | ||
theme = "poison" | ||
paginate = 10 | ||
pluralizelisttitles = false | ||
|
||
[params] | ||
brand = "ca-hu" | ||
description = 'adventures with computers' | ||
dark_mode = true | ||
|
||
menu = [ | ||
{Name = "About", URL = "/about/", HasChildren = false}, | ||
{Name = "Posts", URL = "/posts/", Pre = "Recent", HasChildren = true, Limit = 5}, | ||
] | ||
|
||
github_url = "https://github.com/ca-hu" | ||
# Adds an RSS icon to the end of the socials which links to {{ .Site.BaseURL }}/index.xml | ||
rss_icon = true | ||
# Which section the RSS icon links to, defaults to all content. See https://gohugo.io/templates/rss/#section-rss | ||
rss_section = "posts" | ||
|
||
# sidebar | ||
sidebar_bg_color = "#202020" # default is #202020 | ||
sidebar_img_border_color = "#515151" # default is #515151 | ||
sidebar_p_color = "#909090" # default is #909090 | ||
sidebar_h1_color = "#FFF" # default is #FFF | ||
sidebar_a_color = "#FFF" # default is #FFF | ||
sidebar_socials_color = "#FFF" # default is #FFF | ||
moon_sun_color = "#FFF" # default is #FFF | ||
moon_sun_background_color = "#515151" # default is #515151 | ||
|
||
# light mode | ||
text_color = "#222" # default is #222 | ||
content_bg_color = "#FAF9F6" # default is #FAF9F6 | ||
post_title_color = "#303030" # default is #303030 | ||
list_color = "#5a5a5a" # default is #5a5a5a | ||
link_color = "#268bd2" # default is #268bd2 | ||
date_color = "#515151" # default is #515151 | ||
table_border_color = "#E5E5E5" # default is #E5E5E5 | ||
table_stripe_color = "#F9F9F9" # default is #F9F9F9 | ||
|
||
# dark mode | ||
text_color_dark = "#eee" # default is #eee | ||
content_bg_color_dark = "#121212" # default is #121212 | ||
post_title_color_dark = "#DBE2E9" # default is #DBE2E9 | ||
list_color_dark = "#9d9d9d" # default is #9d9d9d | ||
link_color_dark = "#268bd2" # default is #268bd2 | ||
date_color_dark = "#9a9a9a" # default is #9a9a9a | ||
table_border_color_dark = "#515151" # default is #515151 | ||
table_stripe_color_dark = "#202020" # default is #202020 | ||
|
||
|
||
[params.meta] | ||
favicon = true | ||
[taxonomies] | ||
series = 'series' | ||
tags = 'tags' |