Initial release
This commit is contained in:
commit
74b5057637
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
/html/
|
||||||
|
.hugo_build.lock
|
6
content/_index.md
Normal file
6
content/_index.md
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
+++
|
||||||
|
date = '2025-02-06T17:11:19+01:00'
|
||||||
|
draft = false
|
||||||
|
title = ''
|
||||||
|
+++
|
||||||
|
Home Page
|
6
content/single.md
Normal file
6
content/single.md
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
+++
|
||||||
|
date = '2025-02-06T17:22:49+01:00'
|
||||||
|
draft = false
|
||||||
|
title = 'Single'
|
||||||
|
+++
|
||||||
|
Single Page
|
6
hugo.toml
Normal file
6
hugo.toml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
baseURL = 'https://example.org/'
|
||||||
|
languageCode = 'de-de'
|
||||||
|
title = 'Title'
|
||||||
|
theme = 'default'
|
||||||
|
publishDir = 'html'
|
||||||
|
cleanDestinationDir = true
|
6
themes/default/archetypes/default.md
Normal file
6
themes/default/archetypes/default.md
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
+++
|
||||||
|
date = '{{ .Date }}'
|
||||||
|
draft = true
|
||||||
|
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
|
||||||
|
description = ''
|
||||||
|
+++
|
17
themes/default/layouts/_default/baseof.html
Normal file
17
themes/default/layouts/_default/baseof.html
Normal 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>
|
3
themes/default/layouts/_default/home.html
Normal file
3
themes/default/layouts/_default/home.html
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{{ define "main" }}
|
||||||
|
{{ .Content }}
|
||||||
|
{{ end }}
|
3
themes/default/layouts/_default/single.html
Normal file
3
themes/default/layouts/_default/single.html
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{{ define "main" }}
|
||||||
|
{{ .Content }}
|
||||||
|
{{ end }}
|
Loading…
Reference in New Issue
Block a user