initial commit
This commit is contained in:
commit
d7ff43d50c
6 changed files with 60 additions and 0 deletions
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
public/
|
||||||
|
resources/
|
||||||
|
*.lock
|
||||||
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
[submodule "themes/hugo-coder"]
|
||||||
|
path = themes/hugo-coder
|
||||||
|
url = https://github.com/luizdepra/hugo-coder.git
|
||||||
6
archetypes/default.md
Normal file
6
archetypes/default.md
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
---
|
||||||
|
title: "{{ replace .Name "-" " " | title }}"
|
||||||
|
date: {{ .Date }}
|
||||||
|
draft: true
|
||||||
|
---
|
||||||
|
|
||||||
33
config.toml
Normal file
33
config.toml
Normal file
|
|
@ -0,0 +1,33 @@
|
||||||
|
baseURL = 'https://lennartalff.net'
|
||||||
|
languageCode = 'en-us'
|
||||||
|
title = 'Thies Lennart Alff'
|
||||||
|
theme = 'hugo-coder'
|
||||||
|
defaultContentLanguage = 'en'
|
||||||
|
pygmentsStyle = 'bw'
|
||||||
|
pygmentsCodeFenes = true
|
||||||
|
pygmentsCodeFencesGuessSyntax = true
|
||||||
|
enableEmoji = true
|
||||||
|
enableGitInfo = true
|
||||||
|
|
||||||
|
[frontmatter]
|
||||||
|
date = ['date', 'publishDate', 'lastmod']
|
||||||
|
lastmod = ['lastmod', ':git', 'date', 'publishDate']
|
||||||
|
publishDate = ['publishDate', 'date']
|
||||||
|
|
||||||
|
[params]
|
||||||
|
author = 'Thies Lennart Alff'
|
||||||
|
colorScheme = 'auto'
|
||||||
|
hideColorSchemeToggle = false
|
||||||
|
dateFormat = '02.01. 2006'
|
||||||
|
|
||||||
|
[taxonomies]
|
||||||
|
category = 'categories'
|
||||||
|
series = 'series'
|
||||||
|
tag = 'tags'
|
||||||
|
author = 'authors'
|
||||||
|
|
||||||
|
|
||||||
|
[[menu.main]]
|
||||||
|
name = 'Recipes'
|
||||||
|
weight = 1
|
||||||
|
url = 'recipes/'
|
||||||
14
content/recipes/drinks/lemonade.md
Normal file
14
content/recipes/drinks/lemonade.md
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
---
|
||||||
|
title: Lemonade
|
||||||
|
date: '2022-08-07'
|
||||||
|
---
|
||||||
|
|
||||||
|
## Ingredients
|
||||||
|
|
||||||
|
* 750ml soda
|
||||||
|
* 100ml lemon juice
|
||||||
|
* 60ml sugar cane syrup
|
||||||
|
* "some" mint
|
||||||
|
* ice cubes
|
||||||
|
|
||||||
|
Mix the fluids, put in the mint and serve it with ice. Yep, that's it... I would advise against lemon slices in the lemonade. The longer you wait the sourer it gets, making it hard to control the taste.
|
||||||
1
themes/hugo-coder
Submodule
1
themes/hugo-coder
Submodule
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit cb5fb606277a329483fb923a32ab6fddec34220a
|
||||||
Loading…
Reference in a new issue