First clean commit

This commit is contained in:
Eorn 2020-04-11 20:01:23 +02:00
commit edbfee3385
16 changed files with 160 additions and 0 deletions

52
.drone.yml Normal file
View 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
View file

@ -0,0 +1 @@
public/

15
.gitmodules vendored Normal file
View 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

3
README.md Normal file
View file

@ -0,0 +1,3 @@
# blog
Le dépôt de mon blog, tout inclus.

8
archetypes/default.md Normal file
View file

@ -0,0 +1,8 @@
---
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
description: ""
tags: ["", ""]
draft: true
---

View file

@ -0,0 +1,7 @@
---
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
description: ""
tags: ["", ""]
draft: false
---

49
config.toml Normal file
View 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

View file

@ -0,0 +1,3 @@
---
title: "Culture"
---

View file

@ -0,0 +1,3 @@
---
title: "Balados"
---

3
content/humeur/_index.md Normal file
View file

@ -0,0 +1,3 @@
---
title: "Humeur"
---

View file

@ -0,0 +1,3 @@
---
title: "Science"
---

View file

@ -0,0 +1,3 @@
---
title: "Analyse de données"
---

3
content/tech/_index.md Normal file
View file

@ -0,0 +1,3 @@
---
title: "Numérique et tech"
---

View file

@ -0,0 +1,3 @@
---
title: "Bidouille"
---

View file

@ -0,0 +1,3 @@
---
title: "Hygiène numérique"
---

1
themes/simple-goeland Submodule

@ -0,0 +1 @@
Subproject commit cd385c8aff107d1e4edf01f9b057ccac34649778