aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore5
-rw-r--r--docs/presentation/archetypes/default.md5
-rw-r--r--docs/presentation/content/_index.md12
-rw-r--r--docs/presentation/go.mod5
-rw-r--r--docs/presentation/go.sum2
-rw-r--r--docs/presentation/hugo.toml15
6 files changed, 44 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 83a8056..d73aeeb 100644
--- a/.gitignore
+++ b/.gitignore
@@ -21,3 +21,8 @@ docs/doxygen/*/
# formal
**/uml/*.png
+
+# Hugo
+.hugo_build.lock
+docs/presentation/public
+
diff --git a/docs/presentation/archetypes/default.md b/docs/presentation/archetypes/default.md
new file mode 100644
index 0000000..c6f3fce
--- /dev/null
+++ b/docs/presentation/archetypes/default.md
@@ -0,0 +1,5 @@
++++
+title = '{{ replace .File.ContentBaseName "-" " " | title }}'
+date = {{ .Date }}
+draft = true
++++
diff --git a/docs/presentation/content/_index.md b/docs/presentation/content/_index.md
new file mode 100644
index 0000000..dcaad1c
--- /dev/null
+++ b/docs/presentation/content/_index.md
@@ -0,0 +1,12 @@
++++
+title = "ShelSP"
+outputs = ["Reveal"]
++++
+
+# ShelSP
+
+Smart h electronic link Systems Platform
+
+---
+
+set
diff --git a/docs/presentation/go.mod b/docs/presentation/go.mod
new file mode 100644
index 0000000..109c997
--- /dev/null
+++ b/docs/presentation/go.mod
@@ -0,0 +1,5 @@
+module jandroegehoff.de/ShellSP
+
+go 1.22.2
+
+require github.com/dzello/reveal-hugo v0.0.0-20240121164136-5e38035fe41f // indirect
diff --git a/docs/presentation/go.sum b/docs/presentation/go.sum
new file mode 100644
index 0000000..40af216
--- /dev/null
+++ b/docs/presentation/go.sum
@@ -0,0 +1,2 @@
+github.com/dzello/reveal-hugo v0.0.0-20240121164136-5e38035fe41f h1:UPALL8009oW6MhGR7iwp5Ew/wcSmLILh3e9MsSsz6vg=
+github.com/dzello/reveal-hugo v0.0.0-20240121164136-5e38035fe41f/go.mod h1:9mgTYgEkMfnc36vaNSvk3xRedXIv2qXjejlugfwyb3o=
diff --git a/docs/presentation/hugo.toml b/docs/presentation/hugo.toml
new file mode 100644
index 0000000..bbd9b08
--- /dev/null
+++ b/docs/presentation/hugo.toml
@@ -0,0 +1,15 @@
+baseURL = 'https://example.org/'
+languageCode = 'en-us'
+title = 'My New Hugo Site'
+theme = ["github.com/dzello/reveal-hugo"]
+
+[params.reveal_hugo]
+theme = "white"
+
+[markup.goldmark.renderer]
+unsafe = true
+
+[outputFormats.Reveal]
+baseName = "index"
+mediaType = "text/html"
+isHTML = true