diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..c6f3fce --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,5 @@ ++++ +title = '{{ replace .File.ContentBaseName "-" " " | title }}' +date = {{ .Date }} +draft = true ++++ diff --git a/content/about/_index.org b/content/about/_index.org new file mode 100644 index 0000000..b625607 --- /dev/null +++ b/content/about/_index.org @@ -0,0 +1,5 @@ +#+title: About +#+date: [2023-11-23 Thu] +#+draft: false +#+layout: single +* TODO Fill out about section diff --git a/content/index.org b/content/index.org deleted file mode 100644 index 88e5782..0000000 --- a/content/index.org +++ /dev/null @@ -1,5 +0,0 @@ -#+title: index -#+date: [2023-11-23 Thu] -#+draft: true -* Some content to get started -This is a quick test diff --git a/content/posts/first_post.org b/content/posts/first_post.org new file mode 100644 index 0000000..3c92365 --- /dev/null +++ b/content/posts/first_post.org @@ -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]] diff --git a/content/services/gitea.org b/content/services/gitea.org new file mode 100644 index 0000000..87d0523 --- /dev/null +++ b/content/services/gitea.org @@ -0,0 +1,4 @@ +#+title: Gitea +#+date: [2023-11-23 Thu] +#+draft: false +[[https://git.xenia.me.uk]] diff --git a/hugo.toml b/hugo.toml index 9a96259..a980065 100644 --- a/hugo.toml +++ b/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' diff --git a/static/picrew.png b/static/picrew.png new file mode 100644 index 0000000..b10edb3 Binary files /dev/null and b/static/picrew.png differ