First clean commit
This commit is contained in:
commit
edbfee3385
52
.drone.yml
Normal file
52
.drone.yml
Normal file
|
@ -0,0 +1,52 @@
|
||||||
|
kind: pipeline
|
||||||
|
name: default
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: prends_des_branches
|
||||||
|
image: alpine/git
|
||||||
|
commands:
|
||||||
|
- git submodule init
|
||||||
|
- git submodule update --recursive --remote
|
||||||
|
|
||||||
|
- name: construis_ton_nid
|
||||||
|
image: plugins/hugo
|
||||||
|
settings:
|
||||||
|
hugo_version: 0.68.3
|
||||||
|
extended: false
|
||||||
|
validate: true
|
||||||
|
# config: hugo/config.toml
|
||||||
|
# content: hugo/content
|
||||||
|
# layout: hugo/layout
|
||||||
|
# output: hugo/public
|
||||||
|
# theme: hugo/themes/hugo-theme-hello-friend-ng/
|
||||||
|
url: https://blog.goe.land
|
||||||
|
|
||||||
|
- name: read
|
||||||
|
image: alpine/git
|
||||||
|
commands:
|
||||||
|
- ls
|
||||||
|
- ls public/
|
||||||
|
|
||||||
|
- name: deploie_tes_ailes
|
||||||
|
image: appleboy/drone-scp
|
||||||
|
settings:
|
||||||
|
host: {from_secret: SCP_HOSTNAME}
|
||||||
|
port: {from_secret: SCP_PORT}
|
||||||
|
username: {from_secret: SCP_USERNAME}
|
||||||
|
password: {from_secret: SCP_PASSWORD}
|
||||||
|
source: public/
|
||||||
|
strip_components: 1
|
||||||
|
#target: {from_secret: SCP_TARGET_DIRECTORY}
|
||||||
|
target: /srv/apps/blog/data/www/public
|
||||||
|
rm: true
|
||||||
|
|
||||||
|
- name: rereveille_toi
|
||||||
|
image: appleboy/drone-ssh
|
||||||
|
settings:
|
||||||
|
host: {from_secret: SCP_HOSTNAME}
|
||||||
|
port: {from_secret: SCP_PORT}
|
||||||
|
username: {from_secret: SCP_USERNAME}
|
||||||
|
password: {from_secret: SCP_PASSWORD}
|
||||||
|
script:
|
||||||
|
#- {from_secret: SSH_COMMAND}
|
||||||
|
- docker-compose -f /srv/apps/blog/docker-compose.yml restart
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
public/
|
15
.gitmodules
vendored
Normal file
15
.gitmodules
vendored
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
[submodule "themes/hugo-theme-hello-friend-ng"]
|
||||||
|
path = themes/hello-friend-ng
|
||||||
|
url = https://github.com/rhazdon/hugo-theme-hello-friend-ng.git
|
||||||
|
[submodule "themes/hugo-dusk"]
|
||||||
|
path = themes/hugo-dusk
|
||||||
|
url = https://github.com/gyorb/hugo-dusk
|
||||||
|
[submodule "themes/darksimplicity"]
|
||||||
|
path = themes/darksimplicity
|
||||||
|
url = https://github.com/kritoke/darksimplicity
|
||||||
|
[submodule "themes/hugo-theme-zzo"]
|
||||||
|
path = themes/hugo-theme-zzo
|
||||||
|
url = https://github.com/zzossig/hugo-theme-zzo
|
||||||
|
[submodule "themes/simple-goeland"]
|
||||||
|
path = themes/simple-goeland
|
||||||
|
url = https://forge.goe.land/eorn/simple-goeland.git
|
8
archetypes/default.md
Normal file
8
archetypes/default.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
title: "{{ replace .Name "-" " " | title }}"
|
||||||
|
date: {{ .Date }}
|
||||||
|
description: ""
|
||||||
|
tags: ["", ""]
|
||||||
|
draft: true
|
||||||
|
---
|
||||||
|
|
7
archetypes/post-bundle/index.md
Normal file
7
archetypes/post-bundle/index.md
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
---
|
||||||
|
title: "{{ replace .Name "-" " " | title }}"
|
||||||
|
date: {{ .Date }}
|
||||||
|
description: ""
|
||||||
|
tags: ["", ""]
|
||||||
|
draft: false
|
||||||
|
---
|
49
config.toml
Normal file
49
config.toml
Normal file
|
@ -0,0 +1,49 @@
|
||||||
|
baseURL = "https://blog.goe.land"
|
||||||
|
title = "Le nid d'Eorn"
|
||||||
|
theme = "simple-goeland"
|
||||||
|
copyright="Copyleft <a href=\"https://forge.goe.land/eorn\">eorn</a>."
|
||||||
|
languageCode = "fr"
|
||||||
|
defaultContentLanguage = "fr"
|
||||||
|
sectionPagesMenu = "main"
|
||||||
|
pluralizelisttitles = "false"
|
||||||
|
paginate = 10
|
||||||
|
|
||||||
|
[params.rss]
|
||||||
|
includeContent = true
|
||||||
|
authorName = "Eorn le goéland"
|
||||||
|
authorEmail = "blog@goe.land"
|
||||||
|
limit = 20
|
||||||
|
|
||||||
|
[params.info]
|
||||||
|
enableSocial = true
|
||||||
|
poweredby = true
|
||||||
|
related = true
|
||||||
|
taxonomiesCount = true
|
||||||
|
|
||||||
|
[params.social]
|
||||||
|
pleroma = "https://kayii.goe.land/users/eorn"
|
||||||
|
pixelfed = "https://pix.goe.land/eorn"
|
||||||
|
gitea = "https://forge.goe.land/eorn"
|
||||||
|
rss = "index.xml"
|
||||||
|
|
||||||
|
[params.social.config]
|
||||||
|
platforms = ["pleroma", "pixelfed", "gitea", "rss"]
|
||||||
|
|
||||||
|
#[params.matomoAnalytics]
|
||||||
|
#siteID=1
|
||||||
|
#rootURL = "https://matomo.goe.land"
|
||||||
|
|
||||||
|
[taxonomies]
|
||||||
|
tag = "tags"
|
||||||
|
|
||||||
|
[languages]
|
||||||
|
[languages.fr]
|
||||||
|
languageName = "Français"
|
||||||
|
languageCode = "fr"
|
||||||
|
title = "Le nid d'Eorn"
|
||||||
|
weight = 1
|
||||||
|
[languages.en]
|
||||||
|
languageCode = "en"
|
||||||
|
languageName = "English"
|
||||||
|
title = "Eorn's nest"
|
||||||
|
weight = 2
|
3
content/culture/_index.md
Normal file
3
content/culture/_index.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
---
|
||||||
|
title: "Culture"
|
||||||
|
---
|
3
content/culture/balados/_index.md
Normal file
3
content/culture/balados/_index.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
---
|
||||||
|
title: "Balados"
|
||||||
|
---
|
3
content/humeur/_index.md
Normal file
3
content/humeur/_index.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
---
|
||||||
|
title: "Humeur"
|
||||||
|
---
|
3
content/science/_index.md
Normal file
3
content/science/_index.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
---
|
||||||
|
title: "Science"
|
||||||
|
---
|
3
content/science/analyse/_index.md
Normal file
3
content/science/analyse/_index.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
---
|
||||||
|
title: "Analyse de données"
|
||||||
|
---
|
3
content/tech/_index.md
Normal file
3
content/tech/_index.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
---
|
||||||
|
title: "Numérique et tech"
|
||||||
|
---
|
3
content/tech/bidouille/_index.md
Normal file
3
content/tech/bidouille/_index.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
---
|
||||||
|
title: "Bidouille"
|
||||||
|
---
|
3
content/tech/hygiène/_index.md
Normal file
3
content/tech/hygiène/_index.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
---
|
||||||
|
title: "Hygiène numérique"
|
||||||
|
---
|
1
themes/simple-goeland
Submodule
1
themes/simple-goeland
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit cd385c8aff107d1e4edf01f9b057ccac34649778
|
Loading…
Reference in a new issue