initial placeholder website
This commit is contained in:
commit
3379242f31
6 changed files with 43 additions and 0 deletions
19
.gitignore
vendored
Normal file
19
.gitignore
vendored
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
# Created by https://www.toptal.com/developers/gitignore/api/hugo
|
||||||
|
# Edit at https://www.toptal.com/developers/gitignore?templates=hugo
|
||||||
|
|
||||||
|
### Hugo ###
|
||||||
|
# Generated files by hugo
|
||||||
|
/public/
|
||||||
|
/resources/_gen/
|
||||||
|
/assets/jsconfig.json
|
||||||
|
hugo_stats.json
|
||||||
|
|
||||||
|
# Executable may be added to repository
|
||||||
|
hugo.exe
|
||||||
|
hugo.darwin
|
||||||
|
hugo.linux
|
||||||
|
|
||||||
|
# Temporary lock file while building
|
||||||
|
/.hugo_build.lock
|
||||||
|
|
||||||
|
# End of https://www.toptal.com/developers/gitignore/api/hugo
|
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
[submodule "themes/ananke"]
|
||||||
|
path = themes/ananke
|
||||||
|
url = https://github.com/theNewDynamic/gohugo-theme-ananke.git
|
5
archetypes/default.md
Normal file
5
archetypes/default.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
+++
|
||||||
|
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
|
||||||
|
date = {{ .Date }}
|
||||||
|
draft = true
|
||||||
|
+++
|
11
content/posts/bonjour-le-monde.md
Normal file
11
content/posts/bonjour-le-monde.md
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
+++
|
||||||
|
title = 'Bonjour Le Monde'
|
||||||
|
date = 2023-10-10T18:48:06+02:00
|
||||||
|
+++
|
||||||
|
|
||||||
|
Coucou !
|
||||||
|
|
||||||
|
Ceci est un site temporaire, le temps d'en développer un...
|
||||||
|
|
||||||
|
Veuillez ne pas en tenir compte.
|
||||||
|
|
4
hugo.toml
Normal file
4
hugo.toml
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
baseURL = 'https://example.org/'
|
||||||
|
languageCode = 'en-us'
|
||||||
|
title = 'Vélo et Mobilités en Eure-Madrie-Seine'
|
||||||
|
theme = 'ananke'
|
1
themes/ananke
Submodule
1
themes/ananke
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit c086834f0ebfa39b8b6b0cfed010588a6907a91c
|
Loading…
Reference in a new issue