commit 588d523caedbe9acc2320e8c18397335943f2a7f Author: Julian-Samuel Gebühr Date: Mon Aug 28 09:32:36 2023 +0000 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8019ad4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +public +resources +*.lock diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..a7dbbc2 --- /dev/null +++ b/.gitmodules @@ -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 diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..00e77bd --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,6 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +draft: true +--- + diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..d8c3228 --- /dev/null +++ b/config.toml @@ -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 + # 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 + diff --git a/content/_index.de.md b/content/_index.de.md new file mode 100644 index 0000000..b03dc9e --- /dev/null +++ b/content/_index.de.md @@ -0,0 +1,7 @@ +--- +title : "Welcome" +disableTitleSeparator : true +--- + +Website der Familie Gebühr. Für Internetdienstleistungen gerne die Kontaktdaten nutzen. + diff --git a/content/_index.en.md b/content/_index.en.md new file mode 100644 index 0000000..1b42b30 --- /dev/null +++ b/content/_index.en.md @@ -0,0 +1,7 @@ +--- +title : "Welcome" +disableTitleSeparator : true +--- + +Website for the Gebühr family. For internet and hosting services [contact](kontakt) us. + diff --git a/content/impressum/index.en.md b/content/impressum/index.en.md new file mode 100644 index 0000000..4a73efa --- /dev/null +++ b/content/impressum/index.en.md @@ -0,0 +1,11 @@ +--- +title: Imprint +--- + + +``` +Julian-Samuel Gebühr +Flandernstraße 6 +73230 Kirchheim +julian-samuel@gebuehr.net +``` diff --git a/content/impressum/index.md b/content/impressum/index.md new file mode 100644 index 0000000..eb8c5bc --- /dev/null +++ b/content/impressum/index.md @@ -0,0 +1,12 @@ +--- +title: Impressum +--- + +**V.i.S.d.P.** + +``` +Julian-Samuel Gebühr +Flandernstraße 6 +73230 Kirchheim +julian-samuel@gebuehr.net +``` diff --git a/content/kontakt/index.en.md b/content/kontakt/index.en.md new file mode 100644 index 0000000..3955414 --- /dev/null +++ b/content/kontakt/index.en.md @@ -0,0 +1,7 @@ +--- +title: Kontakt +--- + +* **E-Mail** kontakt@gebuehr.net + +For other options, e.g. a phone number shoot us a quick mail. diff --git a/content/kontakt/index.md b/content/kontakt/index.md new file mode 100644 index 0000000..e7264a5 --- /dev/null +++ b/content/kontakt/index.md @@ -0,0 +1,7 @@ +--- +title: Kontakt +--- + +* **E-Mail** kontakt@gebuehr.net + +Weitere Kontaktmöglichkeiten z.B. per Telefon gerne kurz per Mail anfragen. diff --git a/themes/color-your-world b/themes/color-your-world new file mode 160000 index 0000000..61d9137 --- /dev/null +++ b/themes/color-your-world @@ -0,0 +1 @@ +Subproject commit 61d9137fa3bdfd909aad34fa96ce37aeffb7005e