Browse Source

first import

master
Valentin Lab 3 years ago
commit
a476133620
  1. 3
      .gitmodules
  2. 6
      archetypes/default.md
  3. 20
      config.yaml
  4. 7
      content/example/foo.md
  5. 6
      static/custom.css
  6. 1
      themes/geekdoc

3
.gitmodules

@ -0,0 +1,3 @@
[submodule "themes/geekdoc"]
path = themes/geekdoc
url = https://github.com/thegeeklab/hugo-geekdoc.git

6
archetypes/default.md

@ -0,0 +1,6 @@
---
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
draft: true
---

20
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

7
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.

6
static/custom.css

@ -0,0 +1,6 @@
.gdoc-header {
background: #c8c8c8;
color: #141414;
border-bottom: 0;
}

1
themes/geekdoc

@ -0,0 +1 @@
Subproject commit b38255fd9071ed02ca4582bdd06ea1f0dbab9fce
Loading…
Cancel
Save