summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2022-10-22 13:07:40 +0200
committerGuido Günther <agx@sigxcpu.org>2022-12-10 17:03:09 +0100
commit82dc405d28875a27a722d886f2ce73d142b738f1 (patch)
tree042c61ba4eb73f779c0e1d92b47fdccfed39853b
parented9125e64164736b4291cc176c75f3b147767a92 (diff)
Site setup
-rw-r--r--.gitignore3
-rw-r--r--Makefile7
-rw-r--r--config.toml25
3 files changed, 32 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..4b396c8
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+resources/
+public/
+.hugo_build.lock
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..3263e57
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,7 @@
+all:
+ rm -rf public/*
+ hugo -D
+ rsync -e ssh -rv public/* honk.sigxcpu.org:/var/www/bienchen.sigxcpu.org/
+
+server:
+ hugo server -D
diff --git a/config.toml b/config.toml
index 4c1a064..1a097c0 100644
--- a/config.toml
+++ b/config.toml
@@ -1,4 +1,23 @@
-baseURL = 'http://example.org/'
-languageCode = 'en-us'
-title = 'My New Hugo Site'
+baseURL = "https://bienchen.sigxcpu.org/"
+defaultContentLanguage = "de"
+title = 'Die Bienchen'
theme = "ananke"
+ignoreFiles = [ ".*@.*"]
+enableGitInfo = true
+timezone = "Europe/Berlin"
+
+Paginate = 12
+enableRobotsTXT = true
+copyright = "Dana und Guido (CC-By-SA)"
+
+[sitemap]
+ changefreq = "monthly"
+ priority = 0.5
+ filename = "sitemap.xml"
+
+[params]
+ text_color = ""
+ favicon = ""
+ site_logo = ""
+ background_color_class = "bg-black"
+ recent_posts_number = 10