From ebd24b77afadee4f1e0f9acf7cdd9fcc95e0d4b8 Mon Sep 17 00:00:00 2001 From: lauralani Date: Wed, 14 Jun 2023 11:06:43 +0200 Subject: [PATCH] cherry pick stuff from staging --- .woodpecker/deploy.yaml | 5 +++-- books.njk | 4 +++- found.njk | 11 +++++++---- static/css/main.css | 12 ++++++++---- 4 files changed, 21 insertions(+), 11 deletions(-) diff --git a/.woodpecker/deploy.yaml b/.woodpecker/deploy.yaml index 41b5e2b..22b4a47 100644 --- a/.woodpecker/deploy.yaml +++ b/.woodpecker/deploy.yaml @@ -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 diff --git a/books.njk b/books.njk index 9232f10..ba17a8c 100644 --- a/books.njk +++ b/books.njk @@ -5,7 +5,9 @@ permalink: "/books/" eleventyExcludeFromCollections: true --- -

{{ title }}

+

{{ title }}

+⇠ back home +

These are all the books I've rated so far (oldest to newest):

diff --git a/found.njk b/found.njk index 58acff6..c8b3bd0 100644 --- a/found.njk +++ b/found.njk @@ -3,6 +3,8 @@ layout: layouts/home.njk title: "lauka.net - Lost & Found" eleventyExcludeFromCollections: true --- +⇠ home +

{{ title }}

@@ -10,7 +12,7 @@ eleventyExcludeFromCollections: true Bitte kontaktiere mich über einen der untenstehenden Kontaktwege!
Vielen Dank ♥

-

--

+

--

Hi! It looke like you found a lost item of mine!
Please contact me via one of the ways described below!
@@ -19,7 +21,8 @@ eleventyExcludeFromCollections: true

Kontaktwege / Ways to contact me

-Telefon/Phone: +49 172 2585130
-Email: mail@lauka.net
-Discord: lauralani#0542
+Telefon/Phone: +49 172 2585130
+Email: mail@lauka.net
+Discord: @lauralani
+Fediverse: @lauralani@chaos.social / @lauralani@girl-is.gay

diff --git a/static/css/main.css b/static/css/main.css index 613359b..6a8d177 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -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; +}