ADD hugo theme skeleton

This commit is contained in:
Hoernschen 2023-11-11 20:48:54 +01:00
parent e9f68c9b84
commit 9d834470a6
Signed by: hoernschen
GPG key ID: 37591FAF4E6D3462
11 changed files with 26 additions and 1 deletions

View file

@ -1,3 +1,3 @@
# kobel
Pure CSS Hugo theme for personal blogs
A pure CSS Hugo theme for personal blogs

2
archetypes/default.md Normal file
View file

@ -0,0 +1,2 @@
+++
+++

0
layouts/404.html Normal file
View file

View file

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
{{- partial "head.html" . -}}
<body>
{{- partial "header.html" . -}}
<div id="content">
{{- block "main" . }}{{- end }}
</div>
{{- partial "footer.html" . -}}
</body>
</html>

View file

View file

0
layouts/index.html Normal file
View file

View file

View file

View file

12
theme.toml Normal file
View file

@ -0,0 +1,12 @@
name = "Kobel"
license = "GNU GPLv3"
licenselink = "https://code.nutfactory.org/themes/kobel/src/branch/main/LICENSE"
description = "A Pure CSS Hugo theme for personal websites"
homepage = "https://nutfactory.org"
tags = []
features = []
min_version = "0.41.0"
[author]
name = "Hoernschen"
homepage = "https://hoernschen.de"