Init Hugo app
This commit is contained in:
commit
bc17e309e8
6 changed files with 38 additions and 0 deletions
14
.gitignore
vendored
Normal file
14
.gitignore
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
# Created by https://www.gitignore.io/api/hugo
|
||||
# Edit at https://www.gitignore.io/?templates=hugo
|
||||
|
||||
### Hugo ###
|
||||
# Generated files by hugo
|
||||
/public/
|
||||
/resources/_gen/
|
||||
|
||||
# Executable may be added to repository
|
||||
hugo.exe
|
||||
hugo.darwin
|
||||
hugo.linux
|
||||
|
||||
# End of https://www.gitignore.io/api/hugo
|
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
[submodule "themes/docdock"]
|
||||
path = themes/docdock
|
||||
url = https://github.com/vjeantet/hugo-theme-docdock
|
14
config.yml
Normal file
14
config.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
baseURL: http://example.org
|
||||
languageCode: en-gb
|
||||
title: Snippets
|
||||
theme: docdock
|
||||
|
||||
params:
|
||||
enableGitInfo: true
|
||||
disableNavChevron: true
|
||||
|
||||
outputs:
|
||||
home:
|
||||
- HTML
|
||||
- RSS
|
||||
- JSON
|
1
content/_index.md
Normal file
1
content/_index.md
Normal file
|
@ -0,0 +1 @@
|
|||
# Snippets
|
5
content/test.md
Normal file
5
content/test.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
title: Test
|
||||
---
|
||||
|
||||
Some content
|
1
themes/docdock
Submodule
1
themes/docdock
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 1d12f5733354d9bd4e19e439f068bdc3cfdabe4f
|
Reference in a new issue