Skip to content

Commit

Permalink
Add minimal working example
Browse files Browse the repository at this point in the history
  • Loading branch information
ca-hu committed Oct 25, 2023
1 parent b04c2d4 commit b25a83e
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 2 deletions.
5 changes: 5 additions & 0 deletions content/about/about.md
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.
3 changes: 3 additions & 0 deletions content/posts/hello-world.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
+++
title = 'Hello World'
+++
58 changes: 56 additions & 2 deletions hugo.toml
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'

0 comments on commit b25a83e

Please sign in to comment.