From 50ec84949b3b8589533fe8eaf96377b3ace539ab Mon Sep 17 00:00:00 2001 From: lauralani Date: Thu, 31 Aug 2023 08:42:15 +0200 Subject: [PATCH] update color schemes and some content --- assets/scss/style.scss | 35 +++++++++++++++------------- content/_index.md | 28 ++++++++++------------ content/found.md | 7 +++--- content/portfolio.md | 2 +- layouts/home.html | 1 + layouts/partials/body/footer.html | 3 +++ layouts/shortcodes/last-updated.html | 2 +- 7 files changed, 41 insertions(+), 37 deletions(-) create mode 100644 layouts/partials/body/footer.html diff --git a/assets/scss/style.scss b/assets/scss/style.scss index a13cc7a..c6d27e3 100644 --- a/assets/scss/style.scss +++ b/assets/scss/style.scss @@ -1,7 +1,8 @@ -$body-font-color: #c1c1c1; -$link-font-color: #00cccc; -$heading-font-color: #d66388; -$code-font-color: cornflowerblue; +$body-font-color: #d3d3d3; +$background-color: #212121; +$link-font-color: #1492FF; +$heading-font-color: #FF85B8; +$code-font-color: #a4c0f4; $special-font-color: #c2f486; $main-font-family: 'Open Sans', sans-serif; $min-device-width: 940px; @@ -15,7 +16,7 @@ $min-device-width: 940px; } -content a { +a { margin: 0; padding: 0; border: 0; @@ -40,7 +41,7 @@ body { line-height: 1.4; margin: 1em auto; max-width: 45em; - background: #303030; + background: $background-color; color: $body-font-color; } @@ -121,6 +122,11 @@ content { font: inherit; vertical-align: baseline; } + + em { + font-style: italic; + color: #c2f486; + } } content p { @@ -154,16 +160,6 @@ content strong { vertical-align: baseline; font-weight: 700; color: $heading-font-color; - - &:before { - content: "*"; - content: "*" / ""; - } - - &:after { - content: "*"; - content: "*" / ""; - } } content u { @@ -305,4 +301,11 @@ nav { padding-left: 0; } } +} + +footer { + overflow: hidden; + > div { + float: left; + } } \ No newline at end of file diff --git a/content/_index.md b/content/_index.md index fc1fc25..da0d018 100644 --- a/content/_index.md +++ b/content/_index.md @@ -2,30 +2,30 @@ date: 2023-08-30T06:58:15+02:00 --- -Hi, my name is `Laura Kalb` and I (literally) do things on the internet. +Hi, my name is **Laura Kalb** and I (literally) do things on the internet. ## About me -I'm a network engineer, with a pretty mixed technical background. I started my career in software development, and then -moved on to be a sysadmin with main emphasis on linux environments. Afterwards, I was a mix of network engineer and site -reliability engineer. Now I'm responsible for the network infrastructure at a big datacenter provider. Currently I'm -primarily working on network automation and our internal network infrastructure, and I'm playing a lot with the Golang -programming language =). +I'm a network engineer, with a pretty mixed technical background. I started my career in software +development, and then moved on to be a sysadmin with main emphasis on linux environments. +Afterwards, I was a mix of network engineer and site reliability engineer. I switched to managing +the network infrastructure at a big datacenter provider, where I was supporting the automation of +our infrastructure there. Currently I'm working in network security, and i'm doing a lot of Golang +software development =). -You can find a list of projects that I've already worked on [in my Portfolio](/portfolio). +You can find a list of projects that I've already worked on [in my Portfolio](/portfolio), and you +can find [ways to contact me below](#contact). ## Some nice stuff A list of **tools**, **projects** and **fun stuff** that I already -have worked on or that I want to work on in the future: - -[A list of awesome stuff curated by me!](/interesting-stuff) +have worked on or that I want to work on in the future: [A list of awesome stuff curated by me!](/interesting-stuff) ## Books I always loved to read as many books as I can. So here I'm listing the books I've read since I started this webpage, including a rating and short description. These are the last few books I've rated: -Coming Soon +Coming soon ## Contact Some ways to contact me: @@ -40,8 +40,4 @@ This website is [open source](https://code.lila.network/lauralani/personal-websi This page makes due without any cookies, javascript frameworks, tracking and databases in the effort to make the web quick and usable again :) -This page was last updated at {{< last-updated >}} - -Copyright (c) Laura Kalb 2021-{{< copyright-date >}} - -[Impressum und Datenschutzerklärung](/impressum) \ No newline at end of file +This page was last updated at {{< last-updated >}} \ No newline at end of file diff --git a/content/found.md b/content/found.md index ee956df..a161e98 100644 --- a/content/found.md +++ b/content/found.md @@ -1,5 +1,6 @@ --- date: 2023-08-08 12:20:00+02:00 +title: "Gefunden / Found" --- ## 🇩🇪 German @@ -9,7 +10,7 @@ Vielen Dank ♥ ## 🇬🇧/🇺🇸 English -Hi! It looke like you found a lost item of mine! +Hi! It looks like you found a lost item of mine! Please contact me via one of the ways described below! Thank you ♥ @@ -19,8 +20,8 @@ Thank you ♥ _Telefon/Phone:_ +49 172 2585130 _Email:_ mail@lauka.net _Discord:_ @lauralani -_Fediverse:_ @lauralani@lila.network -_Matrix:_ @lauralani:lila.network +_Fediverse:_ [@lauralani@lila.network](https://social.lila.network/@lauralani) +_Matrix:_ [@lauralani:lila.network](https://matrix.to/#/@lauralani:lila.network) ## Info Diese Seite wurde zuletzt geändert am / This page was last updated at: diff --git a/content/portfolio.md b/content/portfolio.md index 30d4eef..dc11d7a 100644 --- a/content/portfolio.md +++ b/content/portfolio.md @@ -29,7 +29,7 @@ project idea: [Erisi](/erisi/) ### ovh-apikey-manager Source: [https://codeberg.org/lauralani/ovh-apikey-manager](https://codeberg.org/lauralani/ovh-apikey-manager) -Tiny CLI tool to manage OVH APi Keys +Tiny CLI tool to manage OVH API Keys ### dyndns-script Source: [https://codeberg.org/lauralani/dyndns-script](https://codeberg.org/lauralani/dyndns-script) diff --git a/layouts/home.html b/layouts/home.html index c7365cb..fd75b84 100644 --- a/layouts/home.html +++ b/layouts/home.html @@ -13,6 +13,7 @@ {{ .Content }} + {{ partial "body/footer.html" . }} \ No newline at end of file diff --git a/layouts/partials/body/footer.html b/layouts/partials/body/footer.html new file mode 100644 index 0000000..d1b1be8 --- /dev/null +++ b/layouts/partials/body/footer.html @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/layouts/shortcodes/last-updated.html b/layouts/shortcodes/last-updated.html index 8b642ba..ef0ae52 100644 --- a/layouts/shortcodes/last-updated.html +++ b/layouts/shortcodes/last-updated.html @@ -1 +1 @@ -{{ .Page.Date }} \ No newline at end of file +{{ .Page.Date.Format "2006-01-02 15:04:05 MST" }} \ No newline at end of file