Skip to content

Commit 8283cca

Browse files
committed
WIP
1 parent f0d0c0f commit 8283cca

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

stm-jekyll/_config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ title: Eressea stm
1717
1818
description: >- # this means to ignore newlines until "baseurl:"
1919
Experiments around Eressea
20-
baseurl: "" # the subpath of your site, e.g. /blog
20+
baseurl: "server" # the subpath of your site, e.g. /blog
2121
url: "" # the base hostname & protocol for your site, e.g. http://example.com
2222
github_username: stm2
2323

stm-jekyll/_demos/basic.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
name: Basis
33
description: A very basic CR
44
cr: basic.cr
5+
date: 00-01-01
56
---
67
Ein Computerreport, so einfach wie möglich.
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
---
22
title: Eressea Demo-Reporte
33
---
4+
<h1>{{ $title }}</h1>
45
{% for demo in site.demos %}
56
<h2>
67
<a href="{{ demo.url }}">
7-
{{ demo.name }} - {{ demo.description }}
8+
{{ demo.name }}{% if demo.description %} - {{ demo.description }}{% endif %}
89
</a>
910
</h2>
1011
<p>CR: <a href="{{ demo.cr }}">{{ demo.cr }}</a></p>
1112
<p>{{ demo.content | markdownify }}</p>
13+
<p>Path {{ demo.path }}, Relative {{ demo.relative_path }}, Collection {{ demo.collection }}, date {{ demo.date }}.</p>
1214
{% endfor %}

0 commit comments

Comments
 (0)