Move services into single file, add some more poison config options
This commit is contained in:
parent
7a1948efea
commit
8d4a82e0a4
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1 +1,2 @@
|
||||||
/.direnv/
|
/.direnv/
|
||||||
|
/.hugo_build.lock
|
||||||
|
|
10
content/services/_index.org
Normal file
10
content/services/_index.org
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
#+title: Services
|
||||||
|
#+date: 2023-11-25T13:29:29Z
|
||||||
|
#+draft: true
|
||||||
|
#+layout: single
|
||||||
|
|
||||||
|
Directory of self-hosted services
|
||||||
|
* Gitea
|
||||||
|
[[https://git.xenia.me.uk]]
|
||||||
|
* NextCloud
|
||||||
|
[[https://cloud.xenia.me.uk]]
|
|
@ -1,4 +0,0 @@
|
||||||
#+title: Gitea
|
|
||||||
#+date: [2023-11-23 Thu]
|
|
||||||
#+draft: false
|
|
||||||
[[https://git.xenia.me.uk]]
|
|
17
hugo.toml
17
hugo.toml
|
@ -3,22 +3,33 @@ languageCode = 'en-gb'
|
||||||
enableGitInfo = true
|
enableGitInfo = true
|
||||||
title = 'My Personal Collection of Random Things'
|
title = 'My Personal Collection of Random Things'
|
||||||
theme = "poison"
|
theme = "poison"
|
||||||
|
paginate = 10
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
AuthorName = "Evie Litherland-Smith"
|
AuthorName = "Evie Litherland-Smith"
|
||||||
brand = "My Personal Collection of Random Things"
|
brand = "My Personal Collection of Random Things"
|
||||||
# brand_image = "/picrew.png"
|
brand_image = "/picrew.png"
|
||||||
description = ""
|
description = ""
|
||||||
dark_mode = true
|
dark_mode = true
|
||||||
|
|
||||||
menu = [
|
menu = [
|
||||||
{Name = "About", URL = "/about/", HasChildren = false},
|
{Name = "About", URL = "/about/", HasChildren = false},
|
||||||
{Name = "Self-hosted Services", URL = "/services/", HasChildren = true, Limit = 5},
|
{Name = "Services", URL = "/services/", HasChildren = false},
|
||||||
{Name = "Posts", URL = "/posts/", Pre = "Recent", HasChildren = true, Limit = 5},
|
{Name = "Posts", URL = "/posts/", Pre = "Recent", HasChildren = true, Limit = 10},
|
||||||
]
|
]
|
||||||
|
|
||||||
|
front_page_content = ["posts"]
|
||||||
|
|
||||||
email_url = "mailto://evie@xenia.me.uk"
|
email_url = "mailto://evie@xenia.me.uk"
|
||||||
matrix_url = "https://matrix.to/#/@evie:xenia.me.uk"
|
matrix_url = "https://matrix.to/#/@evie:xenia.me.uk"
|
||||||
|
github_url = "https://github.com/elitherl"
|
||||||
|
|
||||||
|
rss_icon = true
|
||||||
|
rss_section = "posts"
|
||||||
|
|
||||||
|
[taxonomies]
|
||||||
|
series = 'series'
|
||||||
|
tags = 'tags'
|
||||||
|
|
||||||
[privacy]
|
[privacy]
|
||||||
[privacy.disqus]
|
[privacy.disqus]
|
||||||
|
|
Reference in a new issue