commit 378775b8b106a9d3160d43e61637951cd7519300 Author: Florian Schlegel Date: Thu May 30 13:14:35 2024 +0200 initiales Commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c6c9ae5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +/.hugo_build.lock +/public +/resources diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..5154615 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/ananke"] + path = themes/ananke + url = https://github.com/theNewDynamic/gohugo-theme-ananke.git 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/content/de/posts/my-first-post.md b/content/de/posts/my-first-post.md new file mode 100644 index 0000000..5e7200e --- /dev/null +++ b/content/de/posts/my-first-post.md @@ -0,0 +1,10 @@ ++++ +title = 'My First Post' +date = 2024-05-19T01:25:53+02:00 +draft = true ++++ +## Introduction + +This is **bold** text, and this is *emphasized* text. + +Visit the [Hugo](https://gohugo.io) website! diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..fed567f --- /dev/null +++ b/hugo.toml @@ -0,0 +1,49 @@ +title = "Interfug 2024" +copyright = "Chaostreff Chemnitz" +baseURL = 'https://interfug.com/' +languageCode = "de-de" +theme = 'ananke' +resourceDir = "../resources" + +DefaultContentLanguage = "de" +SectionPagesMenu = "main" +Paginate = 5 # this is set low for demonstrating with dummy content. Set to a higher number +googleAnalytics = "" +enableRobotsTXT = true + +[languages] + [languages.de] + title = "" + weight = 1 + contentDir = "content/de" + # languageDirection = 'rtl' for Right-To-Left languages + [[menu.main]] + # Identifier= "impressum" + name = "Impressum" + url = "https://chaoschemnitz.de/ChaosChemnitz:%C3%9Cber_ChaosChemnitz" + weight = 99 + [languages.en] + title = "" + weight = 2 + contentDir = "content/en" + +[sitemap] + changefreq = "monthly" + priority = 0.5 + filename = "sitemap.xml" + +[params] + text_color = "" + author = "" + favicon = "" + site_logo = "" + description = "Test" + # choose a background color from any on this page: https://tachyons.io/docs/themes/skins/ and preface it with "bg-" + background_color_class = "bg-black" + recent_posts_number = 3 + featured_image = "static/Interfug_Banner.png" + + +[[params.ananke_socials]] +# name = "twitter" +# url = "https://twitter.com/GoHugoIO" diff --git a/static/img/Interfug_Banner.png b/static/img/Interfug_Banner.png new file mode 100644 index 0000000..dcf2451 Binary files /dev/null and b/static/img/Interfug_Banner.png differ diff --git a/themes/ananke b/themes/ananke new file mode 160000 index 0000000..33fbda0 --- /dev/null +++ b/themes/ananke @@ -0,0 +1 @@ +Subproject commit 33fbda0e9d3e97c92af5d195be94e8eea8003239