Compare commits

...

10 commits

9 changed files with 80 additions and 0 deletions

2
.gitignore vendored
View file

@ -1 +1,3 @@
/.direnv/
/.hugo_build.lock
/public/

3
.gitmodules vendored Normal file
View file

@ -0,0 +1,3 @@
[submodule "poison"]
path = themes/poison
url = https://github.com/lukeorth/poison.git

5
archetypes/default.md Normal file
View file

@ -0,0 +1,5 @@
+++
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
date = {{ .Date }}
draft = true
+++

3
archetypes/default.org Normal file
View file

@ -0,0 +1,3 @@
#+title: {{ replace .File.ContentBaseName "-" " " | title }}
#+date: {{ .Date }}
#+draft: true

5
content/about/_index.org Normal file
View file

@ -0,0 +1,5 @@
#+title: About
#+date: [2023-11-23 Thu]
#+draft: false
#+layout: single
* TODO Fill out about section

View file

@ -0,0 +1,16 @@
#+title: Under Construction
#+date: [2023-11-25 Sat]
#+draft: false
* What is this site for?
I'll be using this as a landing page for my server, probably blog about anything random that I find interesting enough, and post pictures of cats!
# more
Still very much under construction and may change /a lot/ as I work it out.
The source will always be available on [[https://git.xenia.me.uk/xenia/homesite][my Gitea instance]] (and probably in a more permanent link on here at some point).
For now I'm going to keep working out what I want to do with this and see where that takes me.
\\ Evie

45
hugo.toml Normal file
View file

@ -0,0 +1,45 @@
baseURL = 'https://xenia.me.uk/'
languageCode = 'en-gb'
enableGitInfo = true
title = 'My Personal Collection of Random Things'
theme = "poison"
paginate = 10
[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 = "Posts", URL = "/posts/", Pre = "Recent", HasChildren = true, Limit = 10},
]
front_page_content = ["posts"]
email_url = "mailto://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.disqus]
disable = true
[privacy.googleAnalytics]
disable = true
[privacy.instagram]
disable = true
[privacy.twitter]
disable = true
[privacy.vimeo]
disable = true
[privacy.youtube]
disable = true

BIN
static/picrew.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 178 KiB

1
themes/poison Submodule

@ -0,0 +1 @@
Subproject commit 86b8cf1abf99ec36c663c5801503475d3b2a95bc