Hugo: initialize project
This commit is contained in:
parent
b561eabcf7
commit
b216fdcf50
3 changed files with 32 additions and 0 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
.hugo_build.lock
|
||||||
|
public
|
6
archetypes/default.md
Normal file
6
archetypes/default.md
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
---
|
||||||
|
title: "{{ replace .Name "-" " " | title }}"
|
||||||
|
date: {{ .Date }}
|
||||||
|
draft: true
|
||||||
|
---
|
||||||
|
|
24
config.yaml
Normal file
24
config.yaml
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
baseURL: https://georges.tobast.fr/
|
||||||
|
languageCode: fr-fr
|
||||||
|
title: Georges
|
||||||
|
disableHugoGeneratorInject: true
|
||||||
|
enableRobotsTXT: false
|
||||||
|
|
||||||
|
params:
|
||||||
|
sourceURL: "https://git.tobast.fr/tobast/georges"
|
||||||
|
siteLicenseURL: "https://www.gnu.org/licenses/gpl-3.0.en.html"
|
||||||
|
siteLicenseName: "GNU GPLv3"
|
||||||
|
|
||||||
|
privacy:
|
||||||
|
disqus:
|
||||||
|
disable: true
|
||||||
|
googleAnalytics:
|
||||||
|
disable: true
|
||||||
|
instagram:
|
||||||
|
disable: true
|
||||||
|
twitter:
|
||||||
|
disable: true
|
||||||
|
vimeo:
|
||||||
|
disable: true
|
||||||
|
youtube:
|
||||||
|
disable: true
|
Loading…
Reference in a new issue