Initial release

This commit is contained in:
Stefan Ritter 2025-02-06 17:27:32 +01:00
commit 74b5057637
8 changed files with 49 additions and 0 deletions

2
.gitignore vendored Normal file
View File

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

6
content/_index.md Normal file
View File

@ -0,0 +1,6 @@
+++
date = '2025-02-06T17:11:19+01:00'
draft = false
title = ''
+++
Home Page

6
content/single.md Normal file
View File

@ -0,0 +1,6 @@
+++
date = '2025-02-06T17:22:49+01:00'
draft = false
title = 'Single'
+++
Single Page

6
hugo.toml Normal file
View File

@ -0,0 +1,6 @@
baseURL = 'https://example.org/'
languageCode = 'de-de'
title = 'Title'
theme = 'default'
publishDir = 'html'
cleanDestinationDir = true

View File

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

View File

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<title>{{ .Site.Title }}</title>
</head>
<body>
<header>
</header>
<main>
{{ block "main" . }}{{ end }}
</main>
<footer>
</footer>
</body>
</html>

View File

@ -0,0 +1,3 @@
{{ define "main" }}
{{ .Content }}
{{ end }}

View File

@ -0,0 +1,3 @@
{{ define "main" }}
{{ .Content }}
{{ end }}