ADD hugo theme skeleton
This commit is contained in:
parent
e9f68c9b84
commit
9d834470a6
11 changed files with 26 additions and 1 deletions
|
@ -1,3 +1,3 @@
|
||||||
# kobel
|
# kobel
|
||||||
|
|
||||||
Pure CSS Hugo theme for personal blogs
|
A pure CSS Hugo theme for personal blogs
|
2
archetypes/default.md
Normal file
2
archetypes/default.md
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
+++
|
||||||
|
+++
|
0
layouts/404.html
Normal file
0
layouts/404.html
Normal file
11
layouts/_default/baseof.html
Normal file
11
layouts/_default/baseof.html
Normal 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>
|
0
layouts/_default/list.html
Normal file
0
layouts/_default/list.html
Normal file
0
layouts/_default/single.html
Normal file
0
layouts/_default/single.html
Normal file
0
layouts/index.html
Normal file
0
layouts/index.html
Normal file
0
layouts/partials/footer.html
Normal file
0
layouts/partials/footer.html
Normal file
0
layouts/partials/head.html
Normal file
0
layouts/partials/head.html
Normal file
0
layouts/partials/header.html
Normal file
0
layouts/partials/header.html
Normal file
12
theme.toml
Normal file
12
theme.toml
Normal 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"
|
Loading…
Reference in a new issue