welp, mistake

This commit is contained in:
Patrick Tschuchnig 2020-01-26 01:58:08 +01:00
parent 34b4159de1
commit 539cc0e302
13 changed files with 36 additions and 50 deletions

View File

@ -1,4 +1,4 @@
title: Meow
title: MEW-DOS v1.1
markdown: kramdown
url: ""
baseurl: "/neko/crt"
@ -6,16 +6,9 @@ baseurl: "/neko/crt"
plugins:
- jekyll-paginate
paginate_path: "/page:num/"
paginate_path: "/blog/page:num/"
paginate: 5
collections_dir: all_collections
collections:
posts:
output: true
projects:
output: true
paginate: 4
defaults:
- scope:

View File

@ -1,2 +1,2 @@
list:
footer_bio: based on the dark reader theme
footer_bio: pwrd by jekyll, html5 and css3

View File

@ -1,7 +1,7 @@
list:
- title: ~/
- title: "~"
url: /
- title: ~/blog
url: /blog.html
url: /blog/
- title: ~/doc/about
url: /about.html

View File

@ -1,8 +1,6 @@
<footer>
<p>
{{site.data.extra.list.footer_bio}}
</p>
<p>
20XX | {{site.title}}
{{site.data.extra.list.footer_bio}}<br>
2020 | {{site.title}}
</p>
</footer>

View File

@ -1,5 +1,5 @@
<header>
<a href=".">
<h3>{{site.title}}</h3>
<div class="headline">{{site.title}}</div>
</a>
</header>

View File

@ -1,5 +1,5 @@
<nav>
{% for item in site.data.nav.list %}
<a href="{{site.baseurl}}{{item.url}}"{% if page.url == item.url %} class="a-active" {% endif %}>{{item.title}}</a>
<a href="{{site.baseurl}}{{item.url}}"{% if item.url == page.url %} class="a-active" {% endif %}>{{item.title}}</a>
{% endfor %}
</nav>

View File

@ -5,12 +5,6 @@
<div class="screen">
<div class="screen-image"></div>
<div class="screen-content crt">
<style>
.meta {
font-size: .7rem;
font-weight: normal;
}
</style>
<!-- header -->
{% include header.html %}
<!-- nav -->

View File

@ -10,9 +10,7 @@
{{content}}
<!-- nav -->
{% include nav.html %}
</div>
</div>
</div>
</body>

View File

@ -3,4 +3,12 @@ title: About
layout: page-screen
---
Lorem ipsum.
Hay! My name's neko and I'm an avid student of information theory. I also enjoy collecting old electronics, mechanical cameras, and analogue audio gear.
I've been studying information engineering (InfoTech) at the [AAU](https://www.aau.at/) since 2017.
Besides studying, I'm an educator for network- and system engineering for a local company.
My first language is German, but I prefer English for general communication.
If you have any questions, shoot me a mail! The server's `koneko.at`, the correct mailbox is `neko`.

View File

@ -177,7 +177,7 @@ http://aleclownes.com/2017/02/01/crt-display.html
.crt::before {
content: " ";
display: block;
position: fixed;
position: absolute;
top: auto;
left: auto;
bottom: auto;

View File

@ -83,23 +83,14 @@ main {
}
.post-list a {
text-decoration: none;
position: relative;
color: #FFBE00 !important;
padding-bottom: 10px;
}
.post-list a:after {
content: "";
position: absolute;
left: auto;
transition: 0.4s;
}
.post-list a:hover:after {
content: "_";
animation: blink 1s infinite;
}
.asciiart {
@ -113,23 +104,19 @@ main {
text-align: center;
}
/*
.post-list a:before,
.post-list a:before {
content: "#";
color: #ff9400;
position: absolute;
left: -0.8em;
font-weight: bold;
.headline{
padding-top: 20px;
padding-bottom: 10px;
font-size: large;
}
*/
/* footer */
footer {
font-weight: bold;
color: #ffd300;
font-size: 0.7rem;
font-size: xx-small;
padding-top:20px;
padding-left: 20px;
padding-right: 20px;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 820 KiB

View File

@ -3,6 +3,14 @@ title: ~/blog
layout: page-screen
---
{% for post in site.posts %}
{{post.date | date: '%Y-%m-%d' }} <a href="{{site.baseurl}}/{{post.url}}"> {{post.title | replace:' ','_'}}.txt</a>
<h2>▄▀▄▀ Recent Posts ▀▄▀▄</h2>
{% for post in paginator.posts %}
░▒▓█ {{post.date | date: '%Y-%m-%d' }} █▓▒░<a href="{{site.baseurl}}{{post.url}}">cat {{post.title | replace:' ','_'}}.txt</a>
{%endfor%}
{% if paginator.total_pages > 1 %}
{% if paginator.page == 1 %} <p>Page {{paginator.page}} <a href="{{site.baseurl}}{{paginator.next_page_path}}">»</a> </p>
{% elsif paginator.page == paginator.total_pages %} <p> <a href="{{site.baseurl}}{{paginator.previous_page_path}}">«</a> Page {{paginator.page}} </p>
{% else %} <p> <a href="{{site.baseurl}}{{paginator.previous_page_path}}">«</a> {{paginator.page}} <a href="{{site.baseurl}}{{paginator.next_page_path}}">»</a> </p>
{% endif %}
{% endif %}