commit b0c82326a8e6916263e27067273215ecfbc6677a Author: Christian Weimann Date: Sat Jan 13 04:52:54 2024 +0100 first commit diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..f9bc3ce --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/hugo.386"] + path = themes/hugo.386 + url = https://gitlab.com/jmfergeau/hugo.386 diff --git a/.hugo_build.lock b/.hugo_build.lock new file mode 100644 index 0000000..e69de29 diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..c6f3fce --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,5 @@ ++++ +title = '{{ replace .File.ContentBaseName "-" " " | title }}' +date = {{ .Date }} +draft = true ++++ diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..b7e300e --- /dev/null +++ b/config.toml @@ -0,0 +1,111 @@ +baseURL = "https://qx9.de" +title = "QX9" +languageCode = "en" +DefaultContentLanguage = "en" # Change this to change the site's language +theme = "hugo.386" +preserveTaxonomyNames = true + +[params] + # The name to display as main title in the home page + mainpagetitle = "QX9" + + # The subtitle to display under the title in the home page + mainpagesubtitle = "Welcome to the early 90s!" + + # The description of your website. It will be displayed in the home page + mainpagedesc = "This theme is the Hugo port of the BOOTSTRA.386 theme for a cool retro look on your blog. Check the links below to access the posts." + + # The name to display in the copyright section in the footer + copyrightname = "QX9" + + # The url to use as link in the copyright name in the footer. Leave empty to use none. + copyrighturl = "" + + # Show the "built on Hugo" disclaimer + showhugo = false + + # Urls for social networks + # facebook = "https://facebook.com" + # twitter = "https://twitter.com" + # linkedin = "https://linkedin.com" + # github = "https://github.com" + # gitlab = "https://gitlab.com" + + # Enables or disables the loading animations. false activates them. Default is false. + loadfastload = false + + # Sets the speed for the page loading effect. Default is 1.0. + loadspeedfactor = 1.0 + + # Enables or disables the second flyby cursor. Default is false. + loadonepass = false + +[params.copyright] + name = "QX9" + + # The url to use as link in the copyright name in the footer. Leave empty to use none. + url = "" + + # Text to go before copyright information + prefix = "" + + # Text to go between copyright and hugo disclaimer (if enabled) + # suffix = "Example site" + +[menu] + # This displays buttons in the navbar to access your contents + [[menu.main]] + identifier = "cloud" + name = "Cloud" + url = "https://cloud.qx9.de" # The path can lead to a content folder too. + weight = 10 + + [[menu.main]] + identifier = "rdg" + name = "RDG" + url = "https://rdg.qx9.de" # The path can lead to a content folder too. + weight = 20 + + [[menu.main]] + identifier = "impressum" # An unique identifier for the button + name = "Impressum" # A display name for the button + url = "/impressum/" # The path to the content. It can lead to a single page (like here) + weight = 30 # A number to order the buttons in the navbar + + #[[menu.main]] + # identifier = "posts" + # name = "All posts" + # url = "/post/" # The path can lead to a content folder too. + # weight = 20 + +[taxonomies] +category = "categories" +tag = "tags" + + +[privacy] + + [privacy.vimeo] + disabled = false + simple = true + + [privacy.twitter] + disabled = false + enableDNT = true + simple = true + + [privacy.instagram] + disabled = false + simple = true + + [privacy.youtube] + disabled = false + privacyEnhanced = true + +[services] + + [services.instagram] + disableInlineCSS = true + + [services.twitter] + disableInlineCSS = true \ No newline at end of file diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..babd84d --- /dev/null +++ b/content/_index.md @@ -0,0 +1,10 @@ ++++ +title = "QX9" +description = "Willkommen" +date = "2024-01-01" +author = "Christian Weimann" ++++ + + + + diff --git a/content/impressum.md b/content/impressum.md new file mode 100644 index 0000000..11eb99c --- /dev/null +++ b/content/impressum.md @@ -0,0 +1,23 @@ ++++ +title = "Impressum" +description = "Wichtige Informationen" +date = "2024-01-01" +author = "Christian Weimann" ++++ + +Hier finden Sie Informationen, um den Betreiber von QX9 zu kontaktieren und um Abuse-Hinweise zu übermittelt. + +# Kontakt +QX9 und die nachgeordneten Dienste werden betrieben von: + +Christian Weimann\ +Relingstr. 8\ +12527 Berlin\ +christian@qx9.de + +# Abuse +Für Hinweise zum Missbrauch von Diensten von QX9 wenden Sie sich bitte an: + +abuse@qx9.de + + diff --git a/layouts/index.html b/layouts/index.html new file mode 100644 index 0000000..6cca59d --- /dev/null +++ b/layouts/index.html @@ -0,0 +1,12 @@ +{{ define "main" }} + + + +{{ end }} \ No newline at end of file diff --git a/themes/hugo.386 b/themes/hugo.386 new file mode 160000 index 0000000..2e2a412 --- /dev/null +++ b/themes/hugo.386 @@ -0,0 +1 @@ +Subproject commit 2e2a41232ab51bd5e3a65a92375050ee864bf789