fix weird design issue
This commit is contained in:
parent
e617f448ec
commit
668ec7e5c2
5 changed files with 31 additions and 25 deletions
49
Gemfile.lock
49
Gemfile.lock
|
@ -1,20 +1,20 @@
|
|||
GEM
|
||||
remote: https://rubygems.org/
|
||||
specs:
|
||||
addressable (2.7.0)
|
||||
addressable (2.8.0)
|
||||
public_suffix (>= 2.0.2, < 5.0)
|
||||
colorator (1.1.0)
|
||||
concurrent-ruby (1.1.5)
|
||||
em-websocket (0.5.1)
|
||||
concurrent-ruby (1.1.9)
|
||||
em-websocket (0.5.2)
|
||||
eventmachine (>= 0.12.9)
|
||||
http_parser.rb (~> 0.6.0)
|
||||
eventmachine (1.2.7)
|
||||
ffi (1.11.1)
|
||||
ffi (1.15.3)
|
||||
forwardable-extended (2.6.0)
|
||||
http_parser.rb (0.6.0)
|
||||
i18n (1.6.0)
|
||||
i18n (1.8.10)
|
||||
concurrent-ruby (~> 1.0)
|
||||
jekyll (4.0.0)
|
||||
jekyll (4.0.1)
|
||||
addressable (~> 2.4)
|
||||
colorator (~> 1.0)
|
||||
em-websocket (~> 0.5)
|
||||
|
@ -29,41 +29,42 @@ GEM
|
|||
rouge (~> 3.0)
|
||||
safe_yaml (~> 1.0)
|
||||
terminal-table (~> 1.8)
|
||||
jekyll-feed (0.12.1)
|
||||
jekyll-feed (0.15.1)
|
||||
jekyll (>= 3.7, < 5.0)
|
||||
jekyll-paginate-v2 (1.5.2)
|
||||
jekyll-sass-converter (2.0.0)
|
||||
jekyll-paginate-v2 (3.0.0)
|
||||
jekyll (>= 3.0, < 5.0)
|
||||
jekyll-sass-converter (2.1.0)
|
||||
sassc (> 2.0.1, < 3.0)
|
||||
jekyll-watch (2.2.1)
|
||||
listen (~> 3.0)
|
||||
kramdown (2.1.0)
|
||||
kramdown (2.3.1)
|
||||
rexml
|
||||
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)
|
||||
listen (3.5.1)
|
||||
rb-fsevent (~> 0.10, >= 0.10.3)
|
||||
rb-inotify (~> 0.9, >= 0.9.10)
|
||||
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)
|
||||
public_suffix (4.0.6)
|
||||
rb-fsevent (0.11.0)
|
||||
rb-inotify (0.10.1)
|
||||
ffi (~> 1.0)
|
||||
rouge (3.10.0)
|
||||
ruby_dep (1.5.0)
|
||||
rexml (3.2.5)
|
||||
rouge (3.26.0)
|
||||
safe_yaml (1.0.5)
|
||||
sassc (2.2.0)
|
||||
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.5)
|
||||
tzinfo (1.2.9)
|
||||
thread_safe (~> 0.1)
|
||||
tzinfo-data (1.2019.2)
|
||||
tzinfo-data (1.2021.1)
|
||||
tzinfo (>= 1.0.0)
|
||||
unicode-display_width (1.6.0)
|
||||
unicode-display_width (1.7.0)
|
||||
wdm (0.1.1)
|
||||
|
||||
PLATFORMS
|
||||
|
@ -78,4 +79,4 @@ DEPENDENCIES
|
|||
wdm (~> 0.1.1)
|
||||
|
||||
BUNDLED WITH
|
||||
2.0.2
|
||||
2.2.16
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
title: Franzi does business ... sort of
|
||||
header: franzi.business
|
||||
url: https://franzi.business
|
||||
|
||||
timezone: Europe/Berlin
|
||||
|
||||
|
|
|
@ -5,4 +5,4 @@
|
|||
- name: Contact
|
||||
link: /contact.html
|
||||
- name: Blog
|
||||
link: /blog.html
|
||||
link: /blog/
|
||||
|
|
|
@ -1,9 +1,11 @@
|
|||
---
|
||||
title: Blog
|
||||
permalink: /blog/
|
||||
pagination:
|
||||
enabled: true
|
||||
---
|
||||
|
||||
<!-- dummy content -->
|
||||
{% 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>
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
---
|
||||
title: Home
|
||||
permalink: /
|
||||
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>
|
||||
|
|
Loading…
Reference in a new issue