commit 5b4915b8bff4148bd5ab82629fbe3163024d9eac Author: Olivier ROMAN Date: Sat Mar 16 17:21:01 2024 +0000 initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..90e0552 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +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/hugo.toml b/hugo.toml new file mode 100644 index 0000000..5848ff2 --- /dev/null +++ b/hugo.toml @@ -0,0 +1,28 @@ +title = "AXUL" +baseURL = "https://axul.org" +languageCode = "fr-FR" +theme = "ananke" + +SectionPagesMenu = "main" +Paginate = 20 # this is set low for demonstrating with dummy content. Set to a higher number +googleAnalytics = "" +enableRobotsTXT = true + +[sitemap] + changefreq = "monthly" + priority = 0.5 + filename = "sitemap.xml" + +[params] + text_color = "" + author = "" + favicon = "" + site_logo = "" + description = "Site principal de l'association AXUL, groupe d'utilisateurs de Logiciels Libres" + # 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 = 5 + +[[params.ananke_socials]] +name = "rss" +url = "https://axul.org/rss" diff --git a/themes/ananke b/themes/ananke new file mode 160000 index 0000000..91df000 --- /dev/null +++ b/themes/ananke @@ -0,0 +1 @@ +Subproject commit 91df000ca82769a7578df81fa142d1a18e446bc0