From ababe2ef8be771bb9e63c12afc72677fa93a3ce1 Mon Sep 17 00:00:00 2001 From: neko Date: Sun, 11 Apr 2021 00:50:56 +0200 Subject: [PATCH 1/7] changing from padding in the post list to margin on the date lines..first test --- assets/css/custom.css | 1 - 1 file changed, 1 deletion(-) diff --git a/assets/css/custom.css b/assets/css/custom.css index 0b380a3..3c5054b 100644 --- a/assets/css/custom.css +++ b/assets/css/custom.css @@ -118,7 +118,6 @@ main a:hover { .post-list a { position: relative; color: #FFBE00 !important; - padding-bottom: 10px; } .post-list a:hover:after { From 6b2b6e5c7d2d3b8764cd19662ded3aa1ab9c6a28 Mon Sep 17 00:00:00 2001 From: neko Date: Sun, 11 Apr 2021 00:52:01 +0200 Subject: [PATCH 2/7] adding p around a and date in blog --- blog/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/index.html b/blog/index.html index 3f0c5ed..66a4701 100644 --- a/blog/index.html +++ b/blog/index.html @@ -5,7 +5,7 @@ layout: page-screen

▄▀▄▀ Recent Posts ▀▄▀▄

{% for post in paginator.posts %} -░▒▓█ {{post.date | date: '%Y-%m-%d' }} █▓▒░cat {{post.title | replace:' ','_'}}.txt +

░▒▓█ {{post.date | date: '%Y-%m-%d' }} █▓▒░

cat {{post.title | replace:' ','_'}}.txt

{%endfor%} {% if paginator.total_pages > 1 %} From 12767ac6e3fb2efb793337154b007d4ad75ca452 Mon Sep 17 00:00:00 2001 From: neko Date: Sun, 11 Apr 2021 00:53:15 +0200 Subject: [PATCH 3/7] added classes to blog p --- blog/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/index.html b/blog/index.html index 66a4701..b33b2c6 100644 --- a/blog/index.html +++ b/blog/index.html @@ -5,7 +5,7 @@ layout: page-screen

▄▀▄▀ Recent Posts ▀▄▀▄

{% for post in paginator.posts %} -

░▒▓█ {{post.date | date: '%Y-%m-%d' }} █▓▒░

cat {{post.title | replace:' ','_'}}.txt

+

░▒▓█ {{post.date | date: '%Y-%m-%d' }} █▓▒░

cat {{post.title | replace:' ','_'}}.txt

{%endfor%} {% if paginator.total_pages > 1 %} From a5cb02d09809fd093858b292592a9cce5a7791f5 Mon Sep 17 00:00:00 2001 From: neko Date: Sun, 11 Apr 2021 00:56:32 +0200 Subject: [PATCH 4/7] added css rules for the blog list --- assets/css/custom.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/assets/css/custom.css b/assets/css/custom.css index 3c5054b..2922456 100644 --- a/assets/css/custom.css +++ b/assets/css/custom.css @@ -142,6 +142,15 @@ main a:hover { font-size: large; } +p.blog-date { + margin-top: 20px; + margin-bottom: 0px; +} + +p.blog-post { + margin: 0px; +} + /* footer */ footer { From 54d139cce1fc7e1b861578209954720de94f42ea Mon Sep 17 00:00:00 2001 From: neko Date: Sun, 11 Apr 2021 00:58:38 +0200 Subject: [PATCH 5/7] removed bottom margin of blog header --- assets/css/custom.css | 5 +++++ blog/index.html | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/assets/css/custom.css b/assets/css/custom.css index 2922456..4c1ce03 100644 --- a/assets/css/custom.css +++ b/assets/css/custom.css @@ -142,6 +142,11 @@ main a:hover { font-size: large; } + +h2.blog-head { + margin-bottom: 0px; +} + p.blog-date { margin-top: 20px; margin-bottom: 0px; diff --git a/blog/index.html b/blog/index.html index b33b2c6..58f3121 100644 --- a/blog/index.html +++ b/blog/index.html @@ -3,7 +3,7 @@ title: Blog layout: page-screen --- -

▄▀▄▀ Recent Posts ▀▄▀▄

+

▄▀▄▀ Recent Posts ▀▄▀▄

{% for post in paginator.posts %}

░▒▓█ {{post.date | date: '%Y-%m-%d' }} █▓▒░

cat {{post.title | replace:' ','_'}}.txt

{%endfor%} From 6962c5a958f9e7746edf9f1efcf6c05edb326eaf Mon Sep 17 00:00:00 2001 From: neko Date: Sun, 11 Apr 2021 01:01:35 +0200 Subject: [PATCH 6/7] add vim to the footer bio --- _data/extra.yml | 2 +- _includes/footer.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/_data/extra.yml b/_data/extra.yml index 375b3af..4e8f2a1 100644 --- a/_data/extra.yml +++ b/_data/extra.yml @@ -1,2 +1,2 @@ list: - footer_bio: pwrd by jekyll, html5 and css3 \ No newline at end of file + footer_bio: pwrd by jekyll, html5 and css3. written in vim. diff --git a/_includes/footer.html b/_includes/footer.html index 2d5f6c0..6d199f9 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -1,6 +1,6 @@

{{site.data.extra.list.footer_bio}}
- 2020 | {{site.title}} + 2021 | {{site.title}}

From 094e97daca745a0924c9f415b3e7c97469e83f8e Mon Sep 17 00:00:00 2001 From: neko Date: Sun, 11 Apr 2021 01:07:50 +0200 Subject: [PATCH 7/7] add license info to about --- _data/extra.yml | 2 +- about.html | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/_data/extra.yml b/_data/extra.yml index 4e8f2a1..7ca9341 100644 --- a/_data/extra.yml +++ b/_data/extra.yml @@ -1,2 +1,2 @@ list: - footer_bio: pwrd by jekyll, html5 and css3. written in vim. + footer_bio: pwrd by jekyll, written in vim, no js diff --git a/about.html b/about.html index 50071d6..b93d519 100644 --- a/about.html +++ b/about.html @@ -17,7 +17,9 @@ Besides studying, I'm an educator for network- and system engineering at a local My first language is German, but I prefer English for general communication.

+All content on my page is GPLv3 unless noted otherwise. +

+

If you have any questions, shoot me a mail! The server's koneko.at, the correct mailbox is neko.

-