Initialized hugo project

pull/4/head
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 100644
View File

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

3
.gitmodules vendored 100644
View File

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

View File

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

35
config.toml 100644
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

View File

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

1
themes/etch 160000

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