mirror of
https://codeberg.org/lauralani/www-lauka-net.git
synced 2024-11-23 20:50:40 +01:00
cherry pick stuff from staging
This commit is contained in:
parent
c9587c4e60
commit
ebd24b77af
4 changed files with 21 additions and 11 deletions
|
@ -6,6 +6,7 @@ steps:
|
|||
branch: [main, staging]
|
||||
commands:
|
||||
- npm install -D @11ty/eleventy
|
||||
- rm -rf public/
|
||||
- npx @11ty/eleventy --input=. --output=public
|
||||
|
||||
deploy-stage:
|
||||
|
@ -26,7 +27,7 @@ steps:
|
|||
- chmod 0600 $HOME/.ssh/id_ed25519
|
||||
- ssh-keyscan -t ed25519 $TARGET_SERVER >> $HOME/.ssh/known_hosts
|
||||
- cd public/
|
||||
- rsync -avh --delete ./ $TARGET_USER@$TARGET_SERVER:$TARGET_PATH
|
||||
- rsync -avh --checksum --delete ./ $TARGET_USER@$TARGET_SERVER:$TARGET_PATH
|
||||
|
||||
|
||||
deploy-prod:
|
||||
|
@ -47,4 +48,4 @@ steps:
|
|||
- chmod 0600 $HOME/.ssh/id_ed25519
|
||||
- ssh-keyscan -t ed25519 $TARGET_SERVER >> $HOME/.ssh/known_hosts
|
||||
- cd public/
|
||||
- rsync -avh --delete ./ $TARGET_USER@$TARGET_SERVER:$TARGET_PATH
|
||||
- rsync -avh --checksum --delete ./ $TARGET_USER@$TARGET_SERVER:$TARGET_PATH
|
||||
|
|
|
@ -5,7 +5,9 @@ permalink: "/books/"
|
|||
eleventyExcludeFromCollections: true
|
||||
---
|
||||
|
||||
<h1><a href="/">{{ title }}</a></h1>
|
||||
<h1>{{ title }}</h1>
|
||||
<a href="/">⇠ back home</a>
|
||||
<br/><br/>
|
||||
<p class="p-note">
|
||||
These are all the books I've rated so far (oldest to newest):
|
||||
</p>
|
||||
|
|
11
found.njk
11
found.njk
|
@ -3,6 +3,8 @@ layout: layouts/home.njk
|
|||
title: "lauka.net - Lost & Found"
|
||||
eleventyExcludeFromCollections: true
|
||||
---
|
||||
<a href="/">⇠ home</a>
|
||||
<br/><br/>
|
||||
|
||||
<h1>{{ title }}</h1>
|
||||
<p class="p-note">
|
||||
|
@ -10,7 +12,7 @@ eleventyExcludeFromCollections: true
|
|||
Bitte kontaktiere mich über einen der untenstehenden Kontaktwege!<br/>
|
||||
Vielen Dank ♥
|
||||
</p>
|
||||
<p style="color: #c2f486;">--</p>
|
||||
<p class="special">--</p>
|
||||
<p class="p-note">
|
||||
Hi! It looke like you found a lost item of mine!<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>
|
||||
<p class="p-note">
|
||||
<a style="color: #c2f486;">Telefon/Phone:</a> +49 172 2585130<br>
|
||||
<a style="color: #c2f486;">Email:</a> mail@lauka.net<br>
|
||||
<a style="color: #c2f486;">Discord:</a> lauralani#0542<br>
|
||||
<i class="special">Telefon/Phone:</i> +49 172 2585130</br>
|
||||
<i class="special">Email:</i> mail@lauka.net</br>
|
||||
<i class="special">Discord:</i> @lauralani</br>
|
||||
<i class="special">Fediverse:</i> @lauralani@chaos.social / @lauralani@girl-is.gay</br>
|
||||
</p>
|
||||
|
|
|
@ -86,13 +86,13 @@ strong {
|
|||
}
|
||||
|
||||
strong:before {
|
||||
content: "**";
|
||||
content: "**" / "";
|
||||
content: "*";
|
||||
content: "*" / "";
|
||||
}
|
||||
|
||||
strong:after {
|
||||
content: "**";
|
||||
content: "**" / "";
|
||||
content: "*";
|
||||
content: "*" / "";
|
||||
}
|
||||
|
||||
strong {
|
||||
|
@ -104,3 +104,7 @@ p > code, code {
|
|||
font-family: Consolas, monaco, monospace;
|
||||
color: cornflowerblue;
|
||||
}
|
||||
|
||||
.special {
|
||||
color: #c2f486;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue