cherry pick stuff from staging

This commit is contained in:
Adora Laura Kalb 2023-06-14 11:06:43 +02:00
parent c9587c4e60
commit ebd24b77af
Signed by: adoralaura
GPG key ID: 7A4552166FC8C056
4 changed files with 21 additions and 11 deletions

View file

@ -6,6 +6,7 @@ steps:
branch: [main, staging] branch: [main, staging]
commands: commands:
- npm install -D @11ty/eleventy - npm install -D @11ty/eleventy
- rm -rf public/
- npx @11ty/eleventy --input=. --output=public - npx @11ty/eleventy --input=. --output=public
deploy-stage: deploy-stage:
@ -26,7 +27,7 @@ steps:
- chmod 0600 $HOME/.ssh/id_ed25519 - chmod 0600 $HOME/.ssh/id_ed25519
- ssh-keyscan -t ed25519 $TARGET_SERVER >> $HOME/.ssh/known_hosts - ssh-keyscan -t ed25519 $TARGET_SERVER >> $HOME/.ssh/known_hosts
- cd public/ - cd public/
- rsync -avh --delete ./ $TARGET_USER@$TARGET_SERVER:$TARGET_PATH - rsync -avh --checksum --delete ./ $TARGET_USER@$TARGET_SERVER:$TARGET_PATH
deploy-prod: deploy-prod:
@ -47,4 +48,4 @@ steps:
- chmod 0600 $HOME/.ssh/id_ed25519 - chmod 0600 $HOME/.ssh/id_ed25519
- ssh-keyscan -t ed25519 $TARGET_SERVER >> $HOME/.ssh/known_hosts - ssh-keyscan -t ed25519 $TARGET_SERVER >> $HOME/.ssh/known_hosts
- cd public/ - cd public/
- rsync -avh --delete ./ $TARGET_USER@$TARGET_SERVER:$TARGET_PATH - rsync -avh --checksum --delete ./ $TARGET_USER@$TARGET_SERVER:$TARGET_PATH

View file

@ -5,7 +5,9 @@ permalink: "/books/"
eleventyExcludeFromCollections: true eleventyExcludeFromCollections: true
--- ---
<h1><a href="/">{{ title }}</a></h1> <h1>{{ title }}</h1>
<a href="/">⇠ back home</a>
<br/><br/>
<p class="p-note"> <p class="p-note">
These are all the books I've rated so far (oldest to newest): These are all the books I've rated so far (oldest to newest):
</p> </p>

View file

@ -3,6 +3,8 @@ layout: layouts/home.njk
title: "lauka.net - Lost & Found" title: "lauka.net - Lost & Found"
eleventyExcludeFromCollections: true eleventyExcludeFromCollections: true
--- ---
<a href="/">⇠ home</a>
<br/><br/>
<h1>{{ title }}</h1> <h1>{{ title }}</h1>
<p class="p-note"> <p class="p-note">
@ -10,7 +12,7 @@ eleventyExcludeFromCollections: true
Bitte kontaktiere mich über einen der untenstehenden Kontaktwege!<br/> Bitte kontaktiere mich über einen der untenstehenden Kontaktwege!<br/>
Vielen Dank ♥ Vielen Dank ♥
</p> </p>
<p style="color: #c2f486;">--</p> <p class="special">--</p>
<p class="p-note"> <p class="p-note">
Hi! It looke like you found a lost item of mine!<br/> Hi! It looke like you found a lost item of mine!<br/>
Please contact me via one of the ways described below!<br/> Please contact me via one of the ways described below!<br/>
@ -19,7 +21,8 @@ eleventyExcludeFromCollections: true
<h2>Kontaktwege / Ways to contact me</h2> <h2>Kontaktwege / Ways to contact me</h2>
<p class="p-note"> <p class="p-note">
<a style="color: #c2f486;">Telefon/Phone:</a> +49 172 2585130<br> <i class="special">Telefon/Phone:</i> +49 172 2585130</br>
<a style="color: #c2f486;">Email:</a> mail@lauka.net<br> <i class="special">Email:</i> mail@lauka.net</br>
<a style="color: #c2f486;">Discord:</a> lauralani#0542<br> <i class="special">Discord:</i> @lauralani</br>
<i class="special">Fediverse:</i> @lauralani@chaos.social / @lauralani@girl-is.gay</br>
</p> </p>

View file

@ -86,13 +86,13 @@ strong {
} }
strong:before { strong:before {
content: "**"; content: "*";
content: "**" / ""; content: "*" / "";
} }
strong:after { strong:after {
content: "**"; content: "*";
content: "**" / ""; content: "*" / "";
} }
strong { strong {
@ -104,3 +104,7 @@ p > code, code {
font-family: Consolas, monaco, monospace; font-family: Consolas, monaco, monospace;
color: cornflowerblue; color: cornflowerblue;
} }
.special {
color: #c2f486;
}