We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit cdfdb11Copy full SHA for cdfdb11
.gitignore
@@ -0,0 +1,13 @@
1
+# Generated files by hugo
2
+/public/
3
+/resources/_gen/
4
+/assets/jsconfig.json
5
+hugo_stats.json
6
+
7
+# Executable may be added to repository
8
+hugo.exe
9
+hugo.darwin
10
+hugo.linux
11
12
+# Temporary lock file while building
13
+/.hugo_build.lock
.gitmodules
@@ -0,0 +1,3 @@
+[submodule "themes/ananke"]
+ path = themes/ananke
+ url = https://github.com/theNewDynamic/gohugo-theme-ananke.git
archetypes/default.md
@@ -0,0 +1,5 @@
++++
+title = '{{ replace .File.ContentBaseName "-" " " | title }}'
+date = {{ .Date }}
+draft = true
hugo.toml
@@ -0,0 +1,4 @@
+baseURL = 'https://example.org/'
+languageCode = 'en-us'
+title = 'My New Hugo Site'
+theme = 'ananke'
themes/ananke
0 commit comments