Add main structure of site, using Hugo poison theme
This commit is contained in:
parent
ca772b4ecf
commit
761ebec2f3
5
archetypes/default.md
Normal file
5
archetypes/default.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
+++
|
||||
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
|
||||
date = {{ .Date }}
|
||||
draft = true
|
||||
+++
|
5
content/about/_index.org
Normal file
5
content/about/_index.org
Normal file
|
@ -0,0 +1,5 @@
|
|||
#+title: About
|
||||
#+date: [2023-11-23 Thu]
|
||||
#+draft: false
|
||||
#+layout: single
|
||||
* TODO Fill out about section
|
|
@ -1,5 +0,0 @@
|
|||
#+title: index
|
||||
#+date: [2023-11-23 Thu]
|
||||
#+draft: true
|
||||
* Some content to get started
|
||||
This is a quick test
|
5
content/posts/first_post.org
Normal file
5
content/posts/first_post.org
Normal file
|
@ -0,0 +1,5 @@
|
|||
#+title: Under Construction
|
||||
#+date: [2023-11-23 Thu]
|
||||
#+draft: false
|
||||
* Plans for this site
|
||||
To start I'll set this up as a landing page for my domain, pointing to other [[{{< ref "/services" >}}][self-hosted services]]
|
4
content/services/gitea.org
Normal file
4
content/services/gitea.org
Normal file
|
@ -0,0 +1,4 @@
|
|||
#+title: Gitea
|
||||
#+date: [2023-11-23 Thu]
|
||||
#+draft: false
|
||||
[[https://git.xenia.me.uk]]
|
35
hugo.toml
35
hugo.toml
|
@ -1,4 +1,39 @@
|
|||
baseURL = 'https://xenia.me.uk/'
|
||||
languageCode = 'en-gb'
|
||||
enableGitInfo = true
|
||||
title = 'My Personal Collection of Random Things'
|
||||
theme = "poison"
|
||||
|
||||
[params]
|
||||
AuthorName = "Evie Litherland-Smith"
|
||||
brand = "My Personal Collection of Random Things"
|
||||
# brand_image = "/picrew.png"
|
||||
description = ""
|
||||
dark_mode = true
|
||||
|
||||
menu = [
|
||||
{Name = "About", URL = "/about/", HasChildren = false},
|
||||
{Name = "Self-hosted Services", URL = "/services/", HasChildren = true, Limit = 5},
|
||||
{Name = "Posts", URL = "/posts/", Pre = "Recent", HasChildren = true, Limit = 5},
|
||||
]
|
||||
|
||||
email_url = "mailto://evie@xenia.me.uk"
|
||||
matrix_url = "https://matrix.to/#/@evie:xenia.me.uk"
|
||||
|
||||
[privacy]
|
||||
[privacy.disqus]
|
||||
disable = true
|
||||
[privacy.googleAnalytics]
|
||||
disable = true
|
||||
[privacy.instagram]
|
||||
disable = true
|
||||
[privacy.twitter]
|
||||
disable = true
|
||||
[privacy.vimeo]
|
||||
disable = true
|
||||
[privacy.youtube]
|
||||
disable = true
|
||||
|
||||
[taxonomies]
|
||||
series = 'series'
|
||||
tags = 'tags'
|
||||
|
|
BIN
static/picrew.png
Normal file
BIN
static/picrew.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 178 KiB |
Reference in a new issue