Initialized hugo project
parent
7532aef1ad
commit
0f614c6739
|
@ -0,0 +1,2 @@
|
|||
.hugo_build.lock
|
||||
public/
|
|
@ -0,0 +1,3 @@
|
|||
[submodule "themes/etch"]
|
||||
path = themes/etch
|
||||
url = https://github.com/LukasJoswiak/etch.git
|
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
title: "{{ replace .Name "-" " " | title }}"
|
||||
date: {{ .Date }}
|
||||
draft: true
|
||||
---
|
||||
|
|
@ -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
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
title: "About"
|
||||
---
|
||||
|
||||
Hi, my name is Jef!
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 1969ea26457aef716efae848c5d08c8a00d75a69
|
Loading…
Reference in New Issue