This commit is contained in:
parent
96d1c68977
commit
67e1c31bd4
34
.forgejo/workflows/publish.yaml
Normal file
34
.forgejo/workflows/publish.yaml
Normal file
|
@ -0,0 +1,34 @@
|
|||
on: [push]
|
||||
jobs:
|
||||
test_checkout:
|
||||
runs-on: debian
|
||||
steps:
|
||||
- run: apt-get update -y && apt-get install -y git curl pdf2svg
|
||||
- run: |
|
||||
curl -L -O https://github.com/gohugoio/hugo/releases/download/v0.124.1/hugo_extended_0.124.1_linux-amd64.deb
|
||||
dpkg -i ./hugo_extended_0.124.1_linux-amd64.deb
|
||||
- run: |
|
||||
TOKEN=$(echo -n "x-access-token:${GITHUB_TOKEN}" | base64)
|
||||
mkdir -p "${GITHUB_WORKSPACE}"
|
||||
cd "${GITHUB_WORKSPACE}"
|
||||
git init
|
||||
git remote add origin "${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}"
|
||||
git -c http.extraHeader="Authorization: Basic ${TOKEN}" fetch origin "${GITHUB_SHA}"
|
||||
git checkout "${GITHUB_SHA}"
|
||||
git submodule update --init --recursive
|
||||
- run: |
|
||||
cd "${GITHUB_WORKSPACE}"
|
||||
pdf2svg content/cv.pdf content/cv.svg
|
||||
hugo --minify
|
||||
- run: |
|
||||
cd "${GITHUB_WORKSPACE}/public/"
|
||||
git init
|
||||
git config user.email "ci_action@example.com"
|
||||
git config user.name "CI"
|
||||
git remote add origin "${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}"
|
||||
TOKEN=$(echo -n "x-access-token:${GITHUB_TOKEN}" | base64)
|
||||
git -c http.extraHeader="Authorization: Basic ${TOKEN}" push origin -d pages || true
|
||||
git checkout -b pages
|
||||
git add *
|
||||
git commit -m "gen pages"
|
||||
git -c http.extraHeader="Authorization: Basic ${TOKEN}" push -u origin pages
|
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
/public/
|
||||
/resources/
|
||||
/.hugo_build.lock
|
||||
/content/cv.svg
|
19
config.toml
19
config.toml
|
@ -1,19 +0,0 @@
|
|||
[[params.menu]]
|
||||
name = "text_gauche"
|
||||
url = "text_gauche"
|
||||
|
||||
[[params.menu]]
|
||||
name = "blog"
|
||||
url = "posts/"
|
||||
|
||||
[[params.menu]]
|
||||
name = "tags"
|
||||
url = "tags/"
|
||||
|
||||
[[params.menu]]
|
||||
name = "about"
|
||||
url = "about/"
|
||||
|
||||
[[params.menu]]
|
||||
name = "contact"
|
||||
url = "contact/"
|
|
@ -4,20 +4,5 @@ params:
|
|||
author: Capucine Mineau
|
||||
---
|
||||
|
||||
# Capucine Mineau
|
||||
[](./cv.pdf)
|
||||
|
||||
## À propos de moi
|
||||
|
||||
Après un baccalauréat technologique en arts
|
||||
appliqués (STD2A) je termine ma troisième année de
|
||||
formation en DNMADE Matériaux et Innovation, dans
|
||||
l’atelier ébénisterie de l'école Boulle. L’année dernière
|
||||
j’ai fait mon stage de deuxième année dans un atelier
|
||||
ESAT d’ébénisterie. Ce fut une expérience enrichissante
|
||||
tant sur le plan professionnel que sur le plan humain. J’ai
|
||||
aussi eu l’occasion de travailler dans l’événementiel pour
|
||||
une exposition et encadrer une équipe.
|
||||
|
||||
Actuellement je travaille sur mon projet de
|
||||
diplôme. L’objectif de ce projet: tester la sociabilité par
|
||||
le jeu.
|
||||
|
|
BIN
content/cv.pdf
Normal file
BIN
content/cv.pdf
Normal file
Binary file not shown.
6
content/posts/_index.md
Normal file
6
content/posts/_index.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
+++
|
||||
title = 'Posts'
|
||||
display_section = 'blog'
|
||||
+++
|
||||
|
||||
List des posts.
|
22
content/posts/example.md
Normal file
22
content/posts/example.md
Normal file
|
@ -0,0 +1,22 @@
|
|||
+++
|
||||
title = 'Example'
|
||||
date = 2024-03-27
|
||||
+++
|
||||
|
||||
# Section 1
|
||||
|
||||

|
||||
|
||||
Un peu de texte. Avec du **gras**, de *l'italique*, du _souligné_, du ~~barré~~, des notes[^1]
|
||||
|
||||
[^1]: une petite note
|
||||
|
||||
On peu aussi mettre des liens vers instagram:
|
||||
|
||||
{{< instagram Cq5CQjlIqik >}}
|
||||
|
||||
On peut faire des liens vers d'[autre site](https://www.facebook.com/profile.php?id=100027868704042) ou vers [ce site](./).
|
||||
|
||||
| Peu peux | aussi |
|
||||
| -------- | -------- |
|
||||
| Faire des| tableaux |
|
BIN
content/posts/pp.jpg
Normal file
BIN
content/posts/pp.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 32 KiB |
|
@ -1 +0,0 @@
|
|||
plop
|
Loading…
Reference in a new issue