Initial commit

This commit is contained in:
moanos [he/him] 2023-08-28 09:32:36 +00:00
commit 588d523cae
11 changed files with 150 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
public
resources
*.lock

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "themes/color-your-world"]
path = themes/color-your-world
url = https://gitlab.com/rmaguiar/hugo-theme-color-your-world.git

6
archetypes/default.md Normal file
View File

@ -0,0 +1,6 @@
---
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
draft: true
---

86
config.toml Normal file
View File

@ -0,0 +1,86 @@
baseURL = "https://files.hyteck.de"
languageCode = "de"
title = "Gebühr.net"
theme = "color-your-world"
publishDir="../sws/files.hyteck.de/"
relativeURLs=true
copyright = "Copyright © Danial & Julian-Samuel Gebühr"
[params]
# Site description
description = "Eine sehr statische Seite"
# Author
author = "Julian-Samuel Gebühr"
authorDesc = "Medizininformatiker, Opem Source Entwickler"
# Footer text
# Each value will become a paragraph
# Keep it as an array
footerText = [ "Generated with [Hugo](https://gohugo.io) using the [Color Your World](https://gitlab.com/rmaguiar/hugo-theme-color-your-world) theme." ]
# Site cover, for Open Graph, Twitter Cards and Schema.org
# It will be used if the current page doesn't have an image cover
# File will be picked from the "assets" directory
# Comment the lines if you don't want to use it
cover = "img/cover.jpg"
coverAlt = "A placeholder that doesn't deserve to be described."
# Shows a message in the footer about JavaScript being disabled
# The default is false
hasNoscriptNotice = true
# Default path for images in posts
# ie.: "content/some-post/img"
# Can also be set PER PAGE
# It can be used to reduce repetition
# There's no default value
imgPath = "img"
# Default classes for markup image
# Modifies the default behavior of images placed via markdown
# Can also be set PER PAGE via front matter
# Available classes are: border and borderless
# There's no default value
markupImgClass = "borderless"
# This will append a separator (of your choice) along the site title to your <title>
# ie.: | ❚ - — • ⚫
# You can disabled it PER PAGE by using "disableTitleSeparator" at front
# matter or disable it entirely by commenting the line below
titleSeparator = "|"
[languages]
[languages.de]
languageName = 'Deutsch'
weight = 1
[languages.de.menu]
[[languages.de.menu.main]]
name = 'Kontakt'
pageRef = '/kontakt'
weight = 10
[[languages.de.menu.main]]
name = 'Impressum'
pageRef = '/impressum'
weight = 20
[languages.en]
languageCode = 'en'
languageName = 'English'
weight = 2
[languages.en.menu]
[[languages.en.menu.main]]
name = 'Contact'
pageRef = '/kontakt'
weight = 10
[[languages.en.menu.main]]
name = 'Imprint'
pageRef = '/impressum'
weight = 20

7
content/_index.de.md Normal file
View File

@ -0,0 +1,7 @@
---
title : "Welcome"
disableTitleSeparator : true
---
Website der Familie Gebühr. Für Internetdienstleistungen gerne die Kontaktdaten nutzen.

7
content/_index.en.md Normal file
View File

@ -0,0 +1,7 @@
---
title : "Welcome"
disableTitleSeparator : true
---
Website for the Gebühr family. For internet and hosting services [contact](kontakt) us.

View File

@ -0,0 +1,11 @@
---
title: Imprint
---
```
Julian-Samuel Gebühr
Flandernstraße 6
73230 Kirchheim
julian-samuel@gebuehr.net
```

View File

@ -0,0 +1,12 @@
---
title: Impressum
---
**V.i.S.d.P.**
```
Julian-Samuel Gebühr
Flandernstraße 6
73230 Kirchheim
julian-samuel@gebuehr.net
```

View File

@ -0,0 +1,7 @@
---
title: Kontakt
---
* **E-Mail** kontakt@gebuehr.net
For other options, e.g. a phone number shoot us a quick mail.

7
content/kontakt/index.md Normal file
View File

@ -0,0 +1,7 @@
---
title: Kontakt
---
* **E-Mail** kontakt@gebuehr.net
Weitere Kontaktmöglichkeiten z.B. per Telefon gerne kurz per Mail anfragen.

@ -0,0 +1 @@
Subproject commit 61d9137fa3bdfd909aad34fa96ce37aeffb7005e