Initial commit
Signed-off-by: Severin Kaderli <severin@kaderli.dev>
This commit is contained in:
commit
7c0fd4b193
3 changed files with 162 additions and 0 deletions
14
.gitlab-ci.yml
Normal file
14
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
stages:
|
||||||
|
- Image
|
||||||
|
|
||||||
|
Image:
|
||||||
|
image: docker:19.03.8
|
||||||
|
stage: Image
|
||||||
|
services:
|
||||||
|
- docker:19.03.8-dind
|
||||||
|
variables:
|
||||||
|
IMAGE_TAG: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG
|
||||||
|
script:
|
||||||
|
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
|
||||||
|
- docker build -t $IMAGE_TAG .
|
||||||
|
- docker push $IMAGE_TAG
|
3
Dockerfile
Normal file
3
Dockerfile
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
FROM registry.gitlab.com/severinkaderli/nginx-docker:master
|
||||||
|
|
||||||
|
COPY index.html /usr/share/nginx/html
|
145
index.html
Normal file
145
index.html
Normal file
|
@ -0,0 +1,145 @@
|
||||||
|
<html lang="en">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Start</title>
|
||||||
|
<link href="file:///home/severin/.cache/wal/colors.css" rel="stylesheet">
|
||||||
|
<style>
|
||||||
|
:root {
|
||||||
|
--spacing: 10px;
|
||||||
|
--width: 500px;
|
||||||
|
--font-family: monospace;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
background-color: var(--background);
|
||||||
|
color: var(--foreground);
|
||||||
|
font-family: var(--font-family);
|
||||||
|
}
|
||||||
|
|
||||||
|
.page {
|
||||||
|
position: fixed;
|
||||||
|
top: 25%;
|
||||||
|
left: 50%;
|
||||||
|
transform: translate(-50%, -25%);
|
||||||
|
width: var(--width);
|
||||||
|
}
|
||||||
|
|
||||||
|
input {
|
||||||
|
width: 100%;
|
||||||
|
outline: none;
|
||||||
|
background-color: var(--background);
|
||||||
|
color: var(--foreground);
|
||||||
|
border: 1px solid var(--foreground);
|
||||||
|
padding: var(--spacing);
|
||||||
|
}
|
||||||
|
|
||||||
|
.group {
|
||||||
|
width: 100%;
|
||||||
|
margin-bottom: calc(2 * var(--spacing));
|
||||||
|
}
|
||||||
|
|
||||||
|
header {
|
||||||
|
margin-bottom: calc(2 * var(--spacing));
|
||||||
|
}
|
||||||
|
|
||||||
|
main {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
list-style: none;
|
||||||
|
display: flex;
|
||||||
|
margin-left: var(--spacing);
|
||||||
|
}
|
||||||
|
|
||||||
|
li:not(:first-child) {
|
||||||
|
margin-left: var(--spacing);
|
||||||
|
}
|
||||||
|
|
||||||
|
li:not(:first-child):before {
|
||||||
|
content: "/";
|
||||||
|
margin-right: var(--spacing);
|
||||||
|
}
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
margin-bottom: calc(0.5 * var(--spacing));
|
||||||
|
font-size: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: inherit;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div class="page">
|
||||||
|
<header>
|
||||||
|
<h1>Hello Severin!</h1>
|
||||||
|
<form action="https://google.ch/search">
|
||||||
|
<input type="search" name="q" autofocus placeholder="Search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
<main>
|
||||||
|
<div class="group">
|
||||||
|
<h2>Organization</h2>
|
||||||
|
<ul>
|
||||||
|
<li><a rel="noopener noreferrer" href="https://mail.zoho.eu">Mail</a></li>
|
||||||
|
<li><a rel="noopener noreferrer" href="https://cloud.schaer.dev/apps/calendar">Calendar</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="group">
|
||||||
|
<h2>Entertainment</h2>
|
||||||
|
<ul>
|
||||||
|
<li><a rel="noopener noreferrer" href="https://media.kaderli.dev">Jellyfin</a></li>
|
||||||
|
<li><a rel="noopener noreferrer" href="https://yewtu.be">YouTube</a></li>
|
||||||
|
<li><a rel="noopener noreferrer" href="https://www.twitch.tv/directory/following">Twitch</a></li>
|
||||||
|
<li><a rel="noopener noreferrer" href="https://www.netflix.com">Netflix</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="group">
|
||||||
|
<h2>Social</h2>
|
||||||
|
<ul>
|
||||||
|
<li><a rel="noopener noreferrer" href="https://www.reddit.com">Reddit</a></li>
|
||||||
|
<li><a rel="noopener noreferrer" href="https://fosstodon.org">Mastodon</a></li>
|
||||||
|
<li><a rel="noopener noreferrer" href="https://twitter.com">Twitter</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="group">
|
||||||
|
<h2>Programming</h2>
|
||||||
|
<ul>
|
||||||
|
<li><a rel="noopener noreferrer" href="https://git.kaderli.dev">Gitea</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="group">
|
||||||
|
<h2>Hosting</h2>
|
||||||
|
<ul>
|
||||||
|
<li><a rel="noopener noreferrer" href="https://www.digitalocean.com">DigitalOcean</a></li>
|
||||||
|
<li><a rel="noopener noreferrer" href="https://www.backblaze.com">Backblaze</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="group">
|
||||||
|
<h2>Gaming</h2>
|
||||||
|
<ul>
|
||||||
|
<li><a rel="noopener noreferrer" href="https://www.reddit.com">Reddit</a></li>
|
||||||
|
<li><a rel="noopener noreferrer" href="https://fosstodon.org">Mastodon</a></li>
|
||||||
|
<li><a rel="noopener noreferrer" href="https://twitter.com">Twitter</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
Loading…
Add table
Add a link
Reference in a new issue