Restructure

master
Marvin Johanning 2020-04-16 20:54:47 +02:00
parent 94d39480ad
commit 9f4e69867e
7 changed files with 28 additions and 0 deletions

View File

@ -25,6 +25,10 @@ description: >- # this means to ignore newlines until "baseurl:"
baseurl: "" # the subpath of your site, e.g. /blog
url: "https://blog.marvinjohanning.de" # the base hostname & protocol for your site, e.g. http://example.com
collections:
t60:
output: true
# Build settings
theme: minima
plugins:

View File

@ -4,3 +4,15 @@
layout: home
---
<h1>All posts</h1>
<hr>
{% for collection in site.collections %}
<p>
{% for item in site[collection.label] %}
<h2><a href="{{ item.url }}">{{ item.title }} </a></h2>
<p class="post-excerpt">{{ item.content | truncate: 200 }}</p>
<hr>
{% endfor %}
</p>
{% endfor %}

12
t60.md Normal file
View File

@ -0,0 +1,12 @@
---
layout: default
title: ThinkPad T60 adventures
---
<h2 style="text-decoration: underline">Adventures in setting up a T60 with a modern OS</h2>
<ul>
{% for post in site.t60 %}
<h3><li><a href="{{ post.url }}">{{ post.title }}</a></li></h3>
<hr>
{% endfor %}
</ul>