Add initial hugo site
This commit is contained in:
parent
9e04fa0d81
commit
407cda8335
8
.gitignore
vendored
Normal file
8
.gitignore
vendored
Normal 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
6
.gitmodules
vendored
Normal 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
6
archetypes/default.md
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
title: "{{replace (substr .Name 11) "-" " " | title }}"
|
||||||
|
date: {{ .Date }}
|
||||||
|
draft: true
|
||||||
|
---
|
||||||
|
|
14
config.toml
Normal file
14
config.toml
Normal 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"
|
9
content/posts/2022-10-08-learning-hugo.md
Normal file
9
content/posts/2022-10-08-learning-hugo.md
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
title: "Learning Hugo"
|
||||||
|
date: 2022-10-08T00:33:29-03:00
|
||||||
|
draft: false
|
||||||
|
---
|
||||||
|
|
||||||
|
# Hugo Test
|
||||||
|
|
||||||
|
Hello World!
|
1
themes/cayman-hugo-theme
Submodule
1
themes/cayman-hugo-theme
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 00e0828a4781951935381e0057cb0bfd25dd0513
|
1
themes/m10c
Submodule
1
themes/m10c
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit bd6e4228fdae3cf4a34e7c133ef528e8b5bf69d0
|
Loading…
Reference in New Issue
Block a user