initial commit

This commit is contained in:
Franzi 2019-09-06 17:06:45 +02:00
commit 8956fbf25b
Signed by: kunsi
GPG Key ID: 12E3D2136B818350
16 changed files with 399 additions and 0 deletions

6
404.html Normal file
View File

@ -0,0 +1,6 @@
---
permalink: /404.html
title: Page not found
shittylayout: true
---
<p>The requested page could not be found.</p>

30
Gemfile Normal file
View File

@ -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.
# 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-paginate-v2"
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?

81
Gemfile.lock Normal file
View File

@ -0,0 +1,81 @@
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.5)
em-websocket (0.5.1)
eventmachine (>= 0.12.9)
http_parser.rb (~> 0.6.0)
eventmachine (1.2.7)
ffi (1.11.1)
forwardable-extended (2.6.0)
http_parser.rb (0.6.0)
i18n (1.6.0)
concurrent-ruby (~> 1.0)
jekyll (4.0.0)
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.12.1)
jekyll (>= 3.7, < 5.0)
jekyll-paginate-v2 (1.5.2)
jekyll-sass-converter (2.0.0)
sassc (> 2.0.1, < 3.0)
jekyll-watch (2.2.1)
listen (~> 3.0)
kramdown (2.1.0)
kramdown-parser-gfm (1.1.0)
kramdown (~> 2.0)
liquid (4.0.3)
listen (3.1.5)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
ruby_dep (~> 1.2)
mercenary (0.3.6)
pathutil (0.16.2)
forwardable-extended (~> 2.6)
public_suffix (4.0.1)
rb-fsevent (0.10.3)
rb-inotify (0.10.0)
ffi (~> 1.0)
rouge (3.10.0)
ruby_dep (1.5.0)
safe_yaml (1.0.5)
sassc (2.2.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.5)
thread_safe (~> 0.1)
tzinfo-data (1.2019.2)
tzinfo (>= 1.0.0)
unicode-display_width (1.6.0)
wdm (0.1.1)
PLATFORMS
ruby
DEPENDENCIES
jekyll (~> 4.0.0)
jekyll-feed (~> 0.12)
jekyll-paginate-v2
tzinfo (~> 1.2)
tzinfo-data
wdm (~> 0.1.1)
BUNDLED WITH
2.0.2

30
_config.yml Normal file
View File

@ -0,0 +1,30 @@
title: Franzi does business ... sort of
header: franzi.business
timezone: Europe/Berlin
author: Franziska 'kunsi' Kunsmann
pagination:
enabled: true
per_page: 3
offset: 2
permalink: '/blog/:num.html'
title: ':title - page :num of :max'
limit: 0
sort_field: 'date'
sort_reverse: true
sass:
style: compressed
defaults:
-
scope:
path: "" # an empty string here means all files in the project
values:
layout: "default"
plugins:
- jekyll-feed
- jekyll-paginate-v2

8
_data/navigation.yml Normal file
View File

@ -0,0 +1,8 @@
- name: Home
link: /
- name: About
link: /about.html
- name: Contact
link: /contact.html
- name: Blog
link: /blog.html

25
_layouts/default.html Normal file
View File

@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="de">
<head>
<title>{{ site.title }} {{ page.title }}</title>
<link rel="stylesheet" href="/css/style.css" type="text/css">
{% if page.shittylayout == true %}
<link rel="stylesheet" href="/css/shitty.css" type="text/css">
{% endif %}
{% feed_meta %}
</head>
<body>
<a href="#content" id="skip-to-content">Skip to content</a>
<nav>
{% for item in site.data.navigation %}
<a href="{{ item.link }}"{% if page.url == item.link %} class="current-page"{% endif %}>{{ item.name }}</a>
{% endfor %}
</nav>
<h1>{{ site.header }}</h1>
<div id="content">
{{ content }}
</div>
<footer>Made with <a href="https://jekyllrb.com/">Jekyll</a>, hosted on <a href="https://git.kunsmann.eu/franzi.business/website/">Gitlab</a></footer>
</body>
</html>

7
_layouts/posts.html Normal file
View File

@ -0,0 +1,7 @@
---
layout: default
---
<h2>{{ page.title }}</h2>
<p class="post-metadata">Published on {{ page.date | date: "%b %-d, %Y" }}</p>
{{ content }}

View File

@ -0,0 +1,5 @@
---
title: Redesign
layout: posts
---
m000

11
about.html Normal file
View File

@ -0,0 +1,11 @@
---
title: Home
---
<h2>About me</h2>
<p>I'm usually bad at describing myself, so I asked my friends on Mastodon to describe me in one sentence. These are the results.</p>
<ul>
<li>Kinky tech nerd and she writes interesting toots and often things I would not have thought of.</li>
<li>A shark enthusiast who does interesting stuff with tech and enjoys the company of cuties.</li>
<li>I see a person that shares some struggles about her live and is interested in Freifunk, Linux or IT in general and is refreshingly open even about the kinky ones.</li>
<li>Apart from being a committed travel-companion to a flauschehorn, Franzi very probably lives in a hidden data center filled with cute sharks.</li>
</ul>

33
blog.html Normal file
View File

@ -0,0 +1,33 @@
---
title: Blog
pagination:
enabled: true
---
{% for post in paginator.posts %}
<h2><a href="{{ post.url | relative_url }}">{{ post.title }}</a></h2>
<p class="post-metadata">Published on {{ post.date | date: "%b %-d, %Y" }}</p>
{{ post.content }}
{% endfor %}
{% if paginator.total_pages > 1 %}
<ul class="pagination">
{% if paginator.previous_page %}
<li><a href="{{ paginator.previous_page_path | relative_url }}">&laquo; Prev</a>
{% endif %}
{% for page in (1..paginator.total_pages) %}
{% if page == paginator.page %}
<li>{{ page }}</li>
{% elsif page == 1 %}
<li><a href="{{ paginator.previous_page_path | relative_url }}">{{ page }}</a></li>
{% else %}
<li><a href="{{ site.paginate_path | relative_url | replace: ':num', page }}">{{ page }}</a></li>
{% endif %}
{% endfor %}
{% if paginator.next_page %}
<li><a href="{{ paginator.next_page_path | relative_url }}">Next &raquo;</a></li>
{% endif %}
</ul>
{% endif %}

23
contact.html Normal file
View File

@ -0,0 +1,23 @@
---
title: Contact
---
<h2>How to contact me</h2>
<p>I do use a lot of services, so here is an (most likely incomplete) list of ways to get in touch with me.</p>
<h3>Social Media</h3>
<ul class="contact">
<li><a href="https://mond-basis.eu/@franzi">@franzi@mond-basis.eu [Mastodon]</a></li>
<li><a href="https://twitter.com/_kunsi">@_kunsi [Twitter]</a></li>
</ul>
<h3>Instant Messaging</h3>
<ul>
<li><a href="https://matrix.to/#/@kunsi:franzi.business">@kunsi:franzi.business [Matrix]</a></li>
<li>K9BC697E [Threema]</li>
<li><a href="xmpp:franzi@kunsmann.eu">franzi@kunsmann.eu [XMPP]</a></li>
<li>Telegram</li>
<li>WhatsApp</li>
</ul>
<p>The current list of Matrix Devices can be found when <a href="/assets/matrix_kunsi-franzi.business.asc">downloading matrix_kunsi-franzi.business.asc</a>. That file is signed using my GPG key.</p>
<h3>Other means of communication</h3>
<p>When sending me E-Mail, please use my <a href="/gpg_hi-kunsmann.eu.asc">GPG key</a> to encrypt messages. The fingerprint is listed below.<pre>5FE3 7FF3 C981 A914 6C38 0532 4205 EF53 ECE0 D2BC</pre></p>

BIN
css/comic.ttf Normal file

Binary file not shown.

18
css/shitty.sass Normal file
View File

@ -0,0 +1,18 @@
---
---
html,
body
background: url('/img/bg.png') #800000;
#content
font-size: 2em
font-family: ComicSans
margin-left: 5em
font-weight: bolder
text-align: center
line-height: 1.2em
footer
border: 1px solid #FFFFFF
background-color: #800000

115
css/style.sass Normal file
View File

@ -0,0 +1,115 @@
---
---
@font-face
font-family: ComicSans
src: url('/css/comic.ttf')
*
margin: 0
padding: 0
html,
body
font-family: Verdana, Arial, sans-serif
color: #FFFFFF
background: black
line-height: 1.5em
h1,
h2,
h3
font-family: ComicSans
line-height: 1em
height: 1em
vertical-align: middle
h1
text-align: center
background: linear-gradient(90deg, #FF0000, #00FF00 50%, #0000FF)
-webkit-background-clip: text
-webkit-text-fill-color: transparent
-webkit-text-stroke: 2px #FFFFFF
paint-order: stroke fill
font-size: 8em
margin-left: 1.3em
h2
font-size: 3em
h3
font-size: 2em
margin-top: 1em
#content
margin: 20px 0 0 11em
a
text-decoration: underline
&:link
color: #FFFFFF
&:visited
color: #CCCCCC
&:hover,
&:active,
&:focus
color: #FF4400
nav
float: left
width: 10em
margin-top: 100px
a
display: block
border: 5px outset #AAAAAA;
background-color: #CCCCCC;
margin: 10px
padding: 2px 5px
text-decoration: none
color: #000000
text-align: right
&.current-page
border-style: inset
font-weight: bolder
&:hover,
&:active,
&:focus
border-style: inset
p
margin-bottom: 1em
footer
clear: both
margin: 20px 10px
border-top: 1px solid #FFFFFF
text-align: center
padding: 2px
a
color: #FFFFFF
&:hover,
&:active,
&:focus
color: #FF4400
#skip-to-content
visibility: hidden
ul
margin: 1em 0 0 0
padding: 0 0 0 1em
.post-metadata
margin: 0.5em 0
color: #999999
font-size: 0.9em

BIN
img/bg.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 331 B

7
index.html Normal file
View File

@ -0,0 +1,7 @@
---
title: Home
shittylayout: true
---
<p>Hello,<br>i'm Franziska!</p>
<p>People say I do a lot of cool stuff, so I decided to create this Website, so everyone will be able to tell by themselves.</p>
<p>Download my <a href="/gpg_hi-kunsmann.eu.asc">GPG key</a> to send me encrypt messages!</p>