recreated the main page
This commit is contained in:
parent
b0206527a1
commit
b532973e2f
5 changed files with 118 additions and 0 deletions
5
.vscode/settings.json
vendored
Normal file
5
.vscode/settings.json
vendored
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
"files.associations": {
|
||||||
|
"*.html": "jekyll",
|
||||||
|
}
|
||||||
|
}
|
4
_includes/footer.html
Normal file
4
_includes/footer.html
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
<footer>
|
||||||
|
<a href='/contact'>Contact</a> - <a href='https://bune.city'>Blog</a> - <a
|
||||||
|
href='https://github.com/lynnesbian'>GitHub</a> - <a href='https://git.bune.city/lynnesbian'>Gitea</a>
|
||||||
|
</footer>
|
18
_layouts/default.html
Normal file
18
_layouts/default.html
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang='en'>
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<link rel="stylesheet" type="text/css" href="assets/style.css">
|
||||||
|
<title>{{ page.title | default: "lynnesbian dot space" }}</title>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div id='main'>
|
||||||
|
{{ content }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{% include footer.html %}
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
70
assets/style.css
Normal file
70
assets/style.css
Normal file
|
@ -0,0 +1,70 @@
|
||||||
|
body {
|
||||||
|
font-family: "Roboto", sans-serif;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
min-height: 100vh;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
body div {
|
||||||
|
flex-grow: 1;
|
||||||
|
}
|
||||||
|
html {
|
||||||
|
background: #fafafa;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-family: "Open Sans", "Roboto", sans-serif;
|
||||||
|
text-align: center;
|
||||||
|
font-size:4em;
|
||||||
|
font-weight: 200;
|
||||||
|
}
|
||||||
|
|
||||||
|
#bune {
|
||||||
|
height:200px;
|
||||||
|
min-height: 15vh;
|
||||||
|
margin: 50px auto;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
p, footer, ul {
|
||||||
|
width: 80%;
|
||||||
|
margin: 20px auto;
|
||||||
|
line-height: 1.3em;
|
||||||
|
}
|
||||||
|
p, ul {
|
||||||
|
font-size: 120%;
|
||||||
|
}
|
||||||
|
li {
|
||||||
|
margin-top: 3px;
|
||||||
|
}
|
||||||
|
ul {
|
||||||
|
list-style-type: "- ";
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: mediumpurple;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
text-align: center;
|
||||||
|
color: grey;
|
||||||
|
font-style: italic;
|
||||||
|
margin: 20px auto;
|
||||||
|
box-sizing: content-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
|
||||||
|
body {
|
||||||
|
font-size: 250%;
|
||||||
|
}
|
||||||
|
p, footer, ul {
|
||||||
|
line-height: 1.6em;
|
||||||
|
}
|
||||||
|
#bune {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
}
|
21
index.html
Normal file
21
index.html
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
---
|
||||||
|
title: "Welcome!"
|
||||||
|
layout: default
|
||||||
|
---
|
||||||
|
<picture id="bune">
|
||||||
|
<source type="image/webp" srcset="https://lynnesbian.space/img/bune.webp">
|
||||||
|
<img id="bune" src='https://lynnesbian.space/img/bune.png' alt="A drawing of a rabbit with brown-tipped ears sniffing the air excitedly!">
|
||||||
|
</picture>
|
||||||
|
<h1>Henlo!</h1>
|
||||||
|
<p>
|
||||||
|
I'm Lynne. My interests include creating free software, writing about computers and other things, and spending time with my partners!
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
I write the <a href="https://bune.city">Bune City Blog</a>, which is mostly about computers, but occasionally goes into other topics. I also post on the Fediverse from my account, <a href="https://fedi.lynnesbian.space/@lynnesbian">@lynnesbian@fedi.lynnesbian.space</a>.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
I provide a Searx instance <a href="https://searx.lynnesbian.space">here</a>, which you can use to search the web for pages, images, files, and more. I also provide a few <a href="https://apt.bune.city">mirrors</a> of small apt repositories.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
My public PGP key is available <a href='https://keybase.io/lynnesbian/pgp_keys.asc'>here</a>, hosted on Keybase. I have proven ownership of lynnesbian.space via <a href='/keybase.txt'>keybase.txt</a>, so you can be sure it's really me.
|
||||||
|
</p>
|
Loading…
Reference in a new issue