commit a476133620b66aa3a1bc3eb9fa637e0df82f135f Author: Valentin Lab Date: Fri Dec 11 11:14:42 2020 +0100 first import diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..c7e8c36 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/geekdoc"] + path = themes/geekdoc + url = https://github.com/thegeeklab/hugo-geekdoc.git diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..00e77bd --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,6 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +draft: true +--- + diff --git a/config.yaml b/config.yaml new file mode 100644 index 0000000..3d906e9 --- /dev/null +++ b/config.yaml @@ -0,0 +1,20 @@ +baseURL: "http://localhost" +title: "Doc Base" +theme: "geekdoc" + +# Geekdoc required configuration +pygmentsUseClasses: true +pygmentsCodeFences: true +disablePathToLower: true + +# assetDir: assets + +# Needed for mermaid shortcodes +markup: + goldmark: + renderer: + # Needed for mermaid shortcode + unsafe: true + tableOfContents: + startLevel: 1 + endLevel: 9 \ No newline at end of file diff --git a/content/example/foo.md b/content/example/foo.md new file mode 100644 index 0000000..8d42f98 --- /dev/null +++ b/content/example/foo.md @@ -0,0 +1,7 @@ +--- +title: "Foo" +date: 2020-12-11T10:25:36+01:00 +draft: true +--- + +This is an example content. \ No newline at end of file diff --git a/static/custom.css b/static/custom.css new file mode 100644 index 0000000..12d02fe --- /dev/null +++ b/static/custom.css @@ -0,0 +1,6 @@ + +.gdoc-header { + background: #c8c8c8; + color: #141414; + border-bottom: 0; +} diff --git a/themes/geekdoc b/themes/geekdoc new file mode 160000 index 0000000..b38255f --- /dev/null +++ b/themes/geekdoc @@ -0,0 +1 @@ +Subproject commit b38255fd9071ed02ca4582bdd06ea1f0dbab9fce