first commit
This commit is contained in:
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
[submodule "themes/hugo.386"]
|
||||||
|
path = themes/hugo.386
|
||||||
|
url = https://gitlab.com/jmfergeau/hugo.386
|
||||||
0
.hugo_build.lock
Normal file
0
.hugo_build.lock
Normal file
5
archetypes/default.md
Normal file
5
archetypes/default.md
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
+++
|
||||||
|
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
|
||||||
|
date = {{ .Date }}
|
||||||
|
draft = true
|
||||||
|
+++
|
||||||
111
config.toml
Normal file
111
config.toml
Normal file
@@ -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
|
||||||
10
content/_index.md
Normal file
10
content/_index.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
+++
|
||||||
|
title = "QX9"
|
||||||
|
description = "Willkommen"
|
||||||
|
date = "2024-01-01"
|
||||||
|
author = "Christian Weimann"
|
||||||
|
+++
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
23
content/impressum.md
Normal file
23
content/impressum.md
Normal file
@@ -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
|
||||||
|
|
||||||
|
|
||||||
12
layouts/index.html
Normal file
12
layouts/index.html
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
{{ define "main" }}
|
||||||
|
|
||||||
|
<div class="row-fluid navmargin">
|
||||||
|
<div class="page-header">
|
||||||
|
<h1>{{ .Title }} - {{ .Date.Format "Mon, Jan 2, 2006" }}</h1>
|
||||||
|
</div>
|
||||||
|
<p class="lead">{{ .Params.description }}</p>
|
||||||
|
{{ .Content }}
|
||||||
|
<h4><a href="{{ .Site.BaseURL }}">{{ i18n "backtohome" }}</a></h4>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{{ end }}
|
||||||
1
themes/hugo.386
Submodule
1
themes/hugo.386
Submodule
Submodule themes/hugo.386 added at 2e2a41232a
Reference in New Issue
Block a user