Add initial hugo site

This commit is contained in:
Isaac Shoebottom 2022-10-08 01:11:53 -03:00
parent 9e04fa0d81
commit 407cda8335
7 changed files with 45 additions and 0 deletions

8
.gitignore vendored Normal file
View File

@ -0,0 +1,8 @@
# Do not commit hugo site builds to the repository
public
# Do not commit generated files to the repository
resources/_gen/
# Ignore hugo build lock file
.hugo_build.lock

6
.gitmodules vendored Normal file
View File

@ -0,0 +1,6 @@
[submodule "themes/cayman-hugo-theme"]
path = themes/cayman-hugo-theme
url = https://github.com/zwbetz-gh/cayman-hugo-theme.git
[submodule "themes/m10c"]
path = themes/m10c
url = https://github.com/vaga/hugo-theme-m10c.git

6
archetypes/default.md Normal file
View File

@ -0,0 +1,6 @@
---
title: "{{replace (substr .Name 11) "-" " " | title }}"
date: {{ .Date }}
draft: true
---

14
config.toml Normal file
View File

@ -0,0 +1,14 @@
baseURL = 'http://blog.shoebottom.ca/'
languageCode = 'en-us'
title = "Isaac's Blog"
theme = 'm10c'
[[menu.main]]
identifier = "tags"
name = "Tags"
url = "/tags/"
[[params.social]]
icon = "github"
name = "My Github"
url = "https://github.com/IsaacShoebottom"

View File

@ -0,0 +1,9 @@
---
title: "Learning Hugo"
date: 2022-10-08T00:33:29-03:00
draft: false
---
# Hugo Test
Hello World!

@ -0,0 +1 @@
Subproject commit 00e0828a4781951935381e0057cb0bfd25dd0513

1
themes/m10c Submodule

@ -0,0 +1 @@
Subproject commit bd6e4228fdae3cf4a34e7c133ef528e8b5bf69d0