diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..ac39e4f --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "files.associations": { + "*.html": "jekyll", + } +} diff --git a/_includes/footer.html b/_includes/footer.html new file mode 100644 index 0000000..63bb043 --- /dev/null +++ b/_includes/footer.html @@ -0,0 +1,4 @@ + \ No newline at end of file diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..5839252 --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,18 @@ + + + + + + + {{ page.title | default: "lynnesbian dot space" }} + + + +
+ {{ content }} +
+ + {% include footer.html %} + + + \ No newline at end of file diff --git a/assets/style.css b/assets/style.css new file mode 100644 index 0000000..bb483d1 --- /dev/null +++ b/assets/style.css @@ -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; + } +} \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..0f857c3 --- /dev/null +++ b/index.html @@ -0,0 +1,21 @@ +--- +title: "Welcome!" +layout: default +--- + + + A drawing of a rabbit with brown-tipped ears sniffing the air excitedly! + +

Henlo!

+

+ I'm Lynne. My interests include creating free software, writing about computers and other things, and spending time with my partners! +

+

+ I write the Bune City Blog, which is mostly about computers, but occasionally goes into other topics. I also post on the Fediverse from my account, @lynnesbian@fedi.lynnesbian.space. +

+

+ I provide a Searx instance here, which you can use to search the web for pages, images, files, and more. I also provide a few mirrors of small apt repositories. +

+

+ My public PGP key is available here, hosted on Keybase. I have proven ownership of lynnesbian.space via keybase.txt, so you can be sure it's really me. +

\ No newline at end of file