Initialized hugo project

This commit is contained in:
Jef Roosens 2022-03-29 15:32:28 +02:00
parent 7532aef1ad
commit 0f614c6739
Signed by: Jef Roosens
GPG key ID: B75D4F293C7052DB
6 changed files with 52 additions and 0 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
.hugo_build.lock
public/

3
.gitmodules vendored Normal file
View file

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

6
archetypes/default.md Normal file
View file

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

35
config.toml Normal file
View file

@ -0,0 +1,35 @@
baseURL = "https://www.rustybever.be"
title = "The Rusty Bever"
theme = "etch"
languageCode = "en-US"
enableInlineShortcodes = true
pygmentsCodeFences = true
pygmentsUseClasses = true
[params]
description = "Description"
copyright = "Copyright © 2022 Jef Roosens"
dark = "auto"
highlight = true
[menu]
[[menu.main]]
identifier = "posts"
name = "posts"
title = "posts"
url = "/"
weight = 10
[[menu.main]]
identifier = "about"
name = "about"
title = "about"
url = "/about/"
weight = 20
[permalinks]
posts = "/:title/"
[markup.goldmark.renderer]
# Allows HTML in Markdown
unsafe = true

5
content/about/index.md Normal file
View file

@ -0,0 +1,5 @@
---
title: "About"
---
Hi, my name is Jef!

1
themes/etch Submodule

@ -0,0 +1 @@
Subproject commit 1969ea26457aef716efae848c5d08c8a00d75a69