commit 286a23d1dcb92f2bfdd05139da66143afec4b12f Author: Lynne Date: Fri Jan 8 17:17:56 2021 +1000 wowie zowie initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f40fbd8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +_site +.sass-cache +.jekyll-cache +.jekyll-metadata +vendor diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..b58b603 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,5 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml new file mode 100644 index 0000000..a55e7a1 --- /dev/null +++ b/.idea/codeStyles/codeStyleConfig.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/.idea/lynnespace.iml b/.idea/lynnespace.iml new file mode 100644 index 0000000..fb016b8 --- /dev/null +++ b/.idea/lynnespace.iml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..f8cdcb8 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..8e7ddbe --- /dev/null +++ b/Gemfile @@ -0,0 +1,30 @@ +source "https://rubygems.org" +# Hello! This is where you manage which Jekyll version is used to run. +# When you want to use a different version, change it below, save the +# file and run `bundle install`. Run Jekyll with `bundle exec`, like so: +# +# bundle exec jekyll serve +# +# This will help ensure the proper Jekyll version is running. +# Happy Jekylling! +gem "jekyll", "~> 4.0.0" +# This is the default theme for new Jekyll sites. You may change this to anything you like. +gem "minima", "~> 2.5" +# If you want to use GitHub Pages, remove the "gem "jekyll"" above and +# uncomment the line below. To upgrade, run `bundle update github-pages`. +# gem "github-pages", group: :jekyll_plugins +# If you have any plugins, put them here! +group :jekyll_plugins do + gem "jekyll-feed", "~> 0.12" +end + +# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem +# and associated library. +install_if -> { RUBY_PLATFORM =~ %r!mingw|mswin|java! } do + gem "tzinfo", "~> 1.2" + gem "tzinfo-data" +end + +# Performance-booster for watching directories on Windows +gem "wdm", "~> 0.1.1", :install_if => Gem.win_platform? + diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..0e4f232 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,86 @@ +GEM + remote: https://rubygems.org/ + specs: + addressable (2.7.0) + public_suffix (>= 2.0.2, < 5.0) + colorator (1.1.0) + concurrent-ruby (1.1.7) + em-websocket (0.5.2) + eventmachine (>= 0.12.9) + http_parser.rb (~> 0.6.0) + eventmachine (1.2.7) + ffi (1.14.2) + forwardable-extended (2.6.0) + http_parser.rb (0.6.0) + i18n (1.8.7) + concurrent-ruby (~> 1.0) + jekyll (4.0.1) + addressable (~> 2.4) + colorator (~> 1.0) + em-websocket (~> 0.5) + i18n (>= 0.9.5, < 2) + jekyll-sass-converter (~> 2.0) + jekyll-watch (~> 2.0) + kramdown (~> 2.1) + kramdown-parser-gfm (~> 1.0) + liquid (~> 4.0) + mercenary (~> 0.3.3) + pathutil (~> 0.9) + rouge (~> 3.0) + safe_yaml (~> 1.0) + terminal-table (~> 1.8) + jekyll-feed (0.15.1) + jekyll (>= 3.7, < 5.0) + jekyll-sass-converter (2.1.0) + sassc (> 2.0.1, < 3.0) + jekyll-seo-tag (2.7.1) + jekyll (>= 3.8, < 5.0) + jekyll-watch (2.2.1) + listen (~> 3.0) + kramdown (2.3.0) + rexml + kramdown-parser-gfm (1.1.0) + kramdown (~> 2.0) + liquid (4.0.3) + listen (3.4.0) + rb-fsevent (~> 0.10, >= 0.10.3) + rb-inotify (~> 0.9, >= 0.9.10) + mercenary (0.3.6) + minima (2.5.1) + jekyll (>= 3.5, < 5.0) + jekyll-feed (~> 0.9) + jekyll-seo-tag (~> 2.1) + pathutil (0.16.2) + forwardable-extended (~> 2.6) + public_suffix (4.0.6) + rb-fsevent (0.10.4) + rb-inotify (0.10.1) + ffi (~> 1.0) + rexml (3.2.4) + rouge (3.26.0) + safe_yaml (1.0.5) + sassc (2.4.0) + ffi (~> 1.9) + terminal-table (1.8.0) + unicode-display_width (~> 1.1, >= 1.1.1) + thread_safe (0.3.6) + tzinfo (1.2.9) + thread_safe (~> 0.1) + tzinfo-data (1.2020.6) + tzinfo (>= 1.0.0) + unicode-display_width (1.7.0) + wdm (0.1.1) + +PLATFORMS + x86_64-linux + +DEPENDENCIES + jekyll (~> 4.0.0) + jekyll-feed (~> 0.12) + minima (~> 2.5) + tzinfo (~> 1.2) + tzinfo-data + wdm (~> 0.1.1) + +BUNDLED WITH + 2.2.4 diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..d0f3256 --- /dev/null +++ b/_config.yml @@ -0,0 +1,15 @@ +url: "https://lynnesbian.space/" +exclude: [.idea] +include: [_content] +defaults: + - + scope: + path: "" + values: + layout: + default + +collections: + content: + output: true + permalink: /:path/ \ No newline at end of file diff --git a/_content/contact.html b/_content/contact.html new file mode 100644 index 0000000..de88e9b --- /dev/null +++ b/_content/contact.html @@ -0,0 +1,4 @@ +--- +title: Contact +--- +test test test \ No newline at end of file diff --git a/_content/index.html b/_content/index.html new file mode 100644 index 0000000..efb767e --- /dev/null +++ b/_content/index.html @@ -0,0 +1,31 @@ +--- +title: Home +permalink: / +--- +

Lynnesbian dot Space

+ +

+ Welcome to my website, where I write about and catalogue things that are interesting to me, and maybe even to you, too! +

+

About me

+

+ At some point I will write more here. +

+ 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 DNS, so you can be sure it's really me. +

+

+ I live in Queensland, Australia, meaning that my timezone is AEST, or UTC+1000. Queensland does not observe daylight savings time. If it seems like I'm always up at weird hours, that's probably why. +

+

+ The Jekyll source directory used to build this site is available here, although I can't see anyone getting much use out of it. +

+

\ No newline at end of file diff --git a/_content/projects.html b/_content/projects.html new file mode 100644 index 0000000..9f3e82e --- /dev/null +++ b/_content/projects.html @@ -0,0 +1,3 @@ +--- +title: Projects +--- diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..70304dd --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,45 @@ + + + + + + + + + {% comment %}{% endcomment %} + {{ page.title | default: "lynnesbian dot space" }} + + + + + + + + + + {% comment %}{% include header.html %}{% endcomment %} +
+ + + A drawing of a rabbit with brown-tipped ears sniffing the air excitedly! + + + +
+ +
+
+ {{ content }} +
+
+ + + diff --git a/assets/img/bune.png b/assets/img/bune.png new file mode 100644 index 0000000..c887db5 Binary files /dev/null and b/assets/img/bune.png differ diff --git a/assets/img/bune.webp b/assets/img/bune.webp new file mode 100644 index 0000000..86264db Binary files /dev/null and b/assets/img/bune.webp differ diff --git a/assets/img/lynnesoft-square-small.png b/assets/img/lynnesoft-square-small.png new file mode 100644 index 0000000..45b0f20 Binary files /dev/null and b/assets/img/lynnesoft-square-small.png differ diff --git a/assets/img/lynnesoft-square.png b/assets/img/lynnesoft-square.png new file mode 100644 index 0000000..a1f53bd Binary files /dev/null and b/assets/img/lynnesoft-square.png differ diff --git a/assets/img/lynnesoft.png b/assets/img/lynnesoft.png new file mode 100644 index 0000000..71390de Binary files /dev/null and b/assets/img/lynnesoft.png differ diff --git a/assets/schema/me.json b/assets/schema/me.json new file mode 100644 index 0000000..965e9da --- /dev/null +++ b/assets/schema/me.json @@ -0,0 +1,29 @@ +{ + "@context": "https://schema.org", + "@type": "Person", + "name": "Lynnesbian", + "givenName": "Lynne", + "nationality": "Australia", + "url": "https://lynnesbian.space", + "email": "lynne@bune.city", + "birthDate": "1998-04-02", + "gender": { + "@type": "GenderType", + "name": "Female" + }, + "knowsLanguage": { + "@type": "Language", + "name": "English", + "alternateName": "en" + }, + "sameAs": [ + "https://fedi.lynnesbian.space/@lynnesbian", + "https://keybase.io/lynnesbian", + "https://github.com/lynnesbian", + "https://git.bune.city/lynnesbian", + "https://steamcommunity.com/id/lynnesbian", + "https://account.xbox.com/en-au/profile?gamertag=lynnesbian", + "https://www.youtube.com/channel/UCAslpe1QisQv5fkD1E5QV1Q", + "https://reddit.com/u/deleeciousCheeps" + ] +} \ No newline at end of file diff --git a/assets/script.js b/assets/script.js new file mode 100644 index 0000000..e69de29 diff --git a/assets/style.css b/assets/style.css new file mode 100644 index 0000000..57f5c43 --- /dev/null +++ b/assets/style.css @@ -0,0 +1,54 @@ +html, body { + height: 100%; +} +body { + font-family: sans-serif; + margin: 0; + display: grid; + grid-template-columns: max(300px, 20%) auto; + background: #ccc; +} + +main article { + max-width: 1800px; + box-shadow: 0 0 20px #777; + padding: 0 50px; + margin: 0 auto; + background: white; + min-height: 100%; + overflow: auto; +} + +main article h1, +main article h2 { + margin-left: -20px; +} + +header { + /* sidebar */ + background: #6c4e7b; + z-index: 1; +} + +nav a { + color: white; +} +nav a { + padding: 10px 0; + display: block; + width: 100%; + text-align: center; + text-decoration: none; + font-size: 1.5em; + transition: 0.2s all; +} +nav a:hover { + background: #ffffff44; +} + +#bune { + object-fit: contain; + display: block; + width: min(100%, 150px); + margin: 30px auto 50px auto; +} \ No newline at end of file diff --git a/run.sh b/run.sh new file mode 100755 index 0000000..9283162 --- /dev/null +++ b/run.sh @@ -0,0 +1,2 @@ +#!/usr/bin/env bash +bundle exec jekyll serve --watch