mirror of
https://codeberg.org/lauralani/www-lauka-net.git
synced 2024-11-23 20:50:40 +01:00
bring site to the same state as live site
This commit is contained in:
parent
b7e84cedde
commit
ae5210bd33
3 changed files with 57 additions and 4 deletions
7
.eleventy.js
Normal file
7
.eleventy.js
Normal file
|
@ -0,0 +1,7 @@
|
|||
module.exports = function(eleventyConfig) {
|
||||
eleventyConfig.addPassthroughCopy('css')
|
||||
eleventyConfig.addPassthroughCopy('js')
|
||||
return {
|
||||
passthroughFileCopy: true
|
||||
}
|
||||
}
|
|
@ -13,13 +13,13 @@ title: lauka (dot) net
|
|||
<meta name="description" content="My little cozy place on the web.">
|
||||
<title>{{ title }}</title>
|
||||
<link rel="author" href="{{ '/humans.txt' | url }}"/>
|
||||
<link rel='stylesheet' type='text/css' media='screen' href="{{ '/css/style.css' | url }}"/>
|
||||
<link rel='stylesheet' type='text/css' media='screen' href="{{ '/css/main.css' | url }}"/>
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="{{ '/apple-touch-icon.png' | url }}">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="{{ '/favicon-32x32.png' | url }}">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="{{ '/favicon-16x16.png' | url }}">
|
||||
<link rel="manifest" href="{{ '/site.webmanifest' | url }}">
|
||||
</head>
|
||||
<body>
|
||||
<body class="h-card">
|
||||
{{ content | safe }}
|
||||
</body>
|
||||
</html>
|
||||
|
|
50
index.njk
50
index.njk
|
@ -2,5 +2,51 @@
|
|||
layout: layouts/home.njk
|
||||
title: lauka (dot) net
|
||||
---
|
||||
# {{ title }}
|
||||
##
|
||||
<h1>{{ title }}</h1>
|
||||
<p>
|
||||
Hi, my name is <strong><span class="p-name">Laura
|
||||
Kalb</span></strong> and I do things on the internet.
|
||||
</p>
|
||||
|
||||
<h2>WIP</h2>
|
||||
<p class="p-note">
|
||||
This page is a work in progress. There is not much to see here yet ;)
|
||||
</p>
|
||||
|
||||
<h2>About me</h2>
|
||||
<p class="p-note">
|
||||
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.
|
||||
</p>
|
||||
|
||||
<h2>Some nice stuff</h2>
|
||||
<p class="p-note">
|
||||
A list of <strong>tools</strong>, <strong>projects</strong> and <strong>fun stuff</strong>
|
||||
that I already have worked on or that I want to work on in the future.
|
||||
</p>
|
||||
<ul>
|
||||
<li>hosting my own mail with <a href="https://mailcow.email/" target="_blank">mailcow</a></li>
|
||||
<li>managing my domains via Infrastructure as Code and Github Actions with <a href="https://github.com/octodns/octodns" target="_blank">OctoDNS</a></li>
|
||||
<li>wrote my own <a href="https://github.com/lauralani/dyndns-script" target="_blank">dyndns tool</a> in Python</li>
|
||||
</ul>
|
||||
|
||||
<h2>Notepad</h2>
|
||||
<p class="p-note">
|
||||
My list of awesome technologies I want to implement soon:
|
||||
</p>
|
||||
<ul>
|
||||
<li><a href="https://min.io/" target="_blank">Minio</a>: A S3-compatible storage (for selfhosting static websites like this one)</li>
|
||||
</ul>
|
||||
|
||||
<h2>Contact me</h2>
|
||||
<p class="p-note">
|
||||
Some ways to contact me:
|
||||
</p>
|
||||
<ul>
|
||||
<li>mail (at) (this tld)</li>
|
||||
<li>via <a href="https://contact.lauka.app" target="_blank">https://contact.lauka.app</a></li>
|
||||
</ul>
|
||||
|
|
Loading…
Reference in a new issue