-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeses.html
More file actions
30 lines (28 loc) · 909 Bytes
/
theses.html
File metadata and controls
30 lines (28 loc) · 909 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
---
layout: default
lang: de
title: Diplomarbeiten
permalink: /diplomarbeiten/
page_id: theses-index
---
<div class="page-header">
<h1>Diplomarbeiten</h1>
</div>
<div class="listing-items">
{% assign de_theses = site.theses | where: "lang", "de" | sort: "date" | reverse %}
{% assign year = "" %}
{% for thesis in de_theses %}
{% assign thesis_year = thesis.date | date: "%Y" %}
{% if thesis_year != year %}
<h2 class="mt-3">{{ thesis_year }}</h2>
{% assign year = thesis_year %}
{% endif %}
<div class="listing-item thesis-entry collapsible">
<h3 class="listing-title">{{ thesis.title }} ({{ thesis.student }}, {{ thesis.date | date: "%Y" }})</h3>
<div class="listing-content">
{% if thesis.student %}<p class="thesis-meta">{{ thesis.student }}</p>{% endif %}
<p>{{thesis.content}}</p>
</div>
</div>
{% endfor %}
</div>