forked from th-koeln/mi-bachelor-praxisprojektseminar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabschlussarbeiten.json
executable file
·28 lines (26 loc) · 953 Bytes
/
abschlussarbeiten.json
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
---
layout: null
permalink: pps-presentations.json
---
[
{% assign abschlussvortraege=site.abschlussvortraege |sort:'datum'| reverse %}
{% for item in abschlussvortraege %}
{
"title": {{ item.thema | smartify | jsonify }},
"date": "{{ item.datum | date: "%m.%Y" }}",
"betreuer": "{{ item.betreuer }}",
"autor": "{{ item.vorname }} {{ item.nachname }}",
"bild": "{{site.url}}{{site.baseurl}}{{item.url}}../{{item.teaserimage}}",
"bildcredits": "{{ item.quelle-bildrechte-teaser }}",
"url": "{{site.deployurl}}{{site.baseurl}}{{item.url}}",
"id": "{{ item.id }}",
"excerpt": {{ item.excerpt | smartify | jsonify }},
"category": "{{ item.category }}",
"collection": "{{ item.collection }}",
"teasertext": {{ item.hinweise | smartify | jsonify }},
"weiterfuehrende-themen": {{ item.weiterfuehrende-themen | smartify | jsonify }},
"tags": "{{ item.stichworte }}"
}
{% unless forloop.last %},{% endunless %}
{% endfor %}
]