create file structure

This commit is contained in:
Michi 2025-03-09 11:13:43 +01:00
parent 44c74e878c
commit e52e342687
3 changed files with 26 additions and 0 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
*/public/*
public/

5
archetypes/default.md Normal file
View file

@ -0,0 +1,5 @@
+++
date = '{{ .Date }}'
draft = true
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
+++

19
hugo.toml Normal file
View file

@ -0,0 +1,19 @@
baseURL = 'https://michivonah.ch'
languageCode = 'de-CH'
title = 'Michi von Ah - Informatiker, Tech-Enthusiast & Achterbahn-Fan'
[params]
description = ""
tags = ""
author = "Michi von Ah"
faviconPath = ""
themeColor = ""
defaultContentLanguage = 'de'
[languages]
[languages.de]
contentDir = 'content/de'
languageName = 'Deutsch'
[languages.en]
contentDir = 'content/en'
languageName = 'English'