Skip to content

Commit 3d7fc26

Browse files
committed
fix events
1 parent 5147670 commit 3d7fc26

File tree

3 files changed

+53
-17
lines changed

3 files changed

+53
-17
lines changed

Community.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Die SG wird die Richtung der Weiterentwicklung begleiten und die Abstimmungsproz
2020
So erreichen Sie die Steuerungsgruppe: [email protected]
2121

2222
{% for member in site.data.sg-group.current %}
23-
{% include person.html %}
23+
{% include persons.html %}
2424
{% endfor %}
2525

2626

_data/events/y2024.yml

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
en: >
66
The founding meeting for the “RDMO e.V.” will take place on 19.11.2024 at the TU Berlin University Library. Interested parties are welcome to contact the steering group in advance. You can find more information about the founding of the association [here](https://www.forschungsdaten.org/index.php/Elftes_Community-Treffen#Vorstellung_&_Diskussion_der_Vorschl%C3%A4ge_zur_Vereinsgr%C3%BCndung_f%C3%BCr_RDMO_%E2%80%93_Katja_Diederichs_(ZB_MED),_Kathrin_H%C3%B6hner_(UB_Dortmund)_&_Gerald_Jagusch_(ULB_Darmstadt))
77
date: 19.11.2024
8-
- event:
8+
- event:
99
de: >
1010
**Vereinsgründung**<br/> [Bericht](https://www.forschungsdaten.org/index.php/Gr%C3%BCndungsversammlung_des_RDMO-Vereins)
1111
Die Gründungsversammlung für den "RDMO e.V." findet in der UB der TU Berlin statt. Daran Interessierte können sich sehr gerne noch im Vorfeld an die Steuerungsgruppe wenden.
@@ -63,3 +63,39 @@
6363
1.x -> 2.0 and many updates from the RDMO groups and Initiatives
6464
with RDMO participation.
6565
date: 28.02.2024
66+
- date: "....."
67+
place: "....."
68+
registration: "....."
69+
program: "....."
70+
report: "....."
71+
further_info: "....."
72+
name:
73+
de: "....."
74+
en: "....."
75+
event:
76+
de: "....."
77+
en: "....."
78+
- date: "....."
79+
place: "....."
80+
registration: "....."
81+
program: "....."
82+
report: "....."
83+
further_info: "....."
84+
name:
85+
de: "....."
86+
en: "....."
87+
event:
88+
de: "....."
89+
en: "....."
90+
- date: "....."
91+
place: "....."
92+
registration: "....."
93+
program: "....."
94+
report: "....."
95+
further_info: "....."
96+
name:
97+
de: "....."
98+
en: "....."
99+
event:
100+
de: "....."
101+
en: "....."

_includes/events.html

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<td style="width: 80%; padding-left:10px;"/>
66
</tr>
77
<tr style="border-bottom: 1pt solid darkgrey;">
8-
<th style="width: 20%;">{{ event.date | markdownify }}<br />{{ event.place }}</th>
8+
<th style="width: 20%;">{{ announcement.date | markdownify }}<br />{{ announcement.place }}</th>
99
<td style="width: 90%; padding-left:10px;">
1010
<b>{{ announcement.name[page.lang] | markdownify }}</b>
1111
<br />
@@ -14,7 +14,7 @@
1414
{% if announcement.registration %} - <u><a href='{{ event.registration }}' target='_blank'>Registration</a></u>{% endif %}
1515
{% if announcement.program %} - <u><a href='{{ event.program }}' target='_blank'>Program</a></u>{% endif %}
1616
{% if announcement.report %} - <u><a href='{{ event.report }}' target='_blank'>Report</a></u>{% endif %}
17-
{% if announcement.registration %} - <u><a href='{{ event.further_info }}' target='_blank'>Further information</a></u>{% endif %}
17+
{% if announcement.further_info %} - <u><a href='{{ event.further_info }}' target='_blank'>Further information</a></u>{% endif %}
1818
</td>
1919
</tr>
2020
</table>
@@ -23,34 +23,34 @@
2323
<br/>
2424
<div class="tab">
2525
{% for year in site.data.events.conf.former_years %}
26-
{% assign y = year | replace:'y','' %}
27-
{% assign id = "" %}
28-
{% if year == site.data.events.conf.former_years[0] %}
29-
{% assign id = "defaultOpen" %}
30-
{% endif %}
26+
{% assign y = year | replace:'y','' %}
27+
{% assign id = "" %}
28+
{% if year == site.data.events.conf.former_years[0] %}
29+
{% assign id = "defaultOpen" %}
30+
{% endif %}
3131
<button class="tablinks" onclick="openYear(event, '{{year}}')" id="{{id}}">{{y}}</button>
3232
{% endfor %}
3333
</div>
3434

3535
{% for year in site.data.events.conf.former_years %}
3636
<div id="{{year}}" class="tabcontent">
37-
{% for event in site.data.events[year] %}
37+
{% for announcement in site.data.events[year] %}
3838
<table style="width: 100%;">
3939
<tr>
4040
<th style="width: 20%;"/>
4141
<td style="width: 80%; padding-left:10px;"/>
4242
</tr>
4343
<tr style="border-bottom: 1pt solid darkgrey;">
44-
<th style="width: 20%;">{{ event.date | markdownify }}<br />{{ event.place }}</th>
44+
<th style="width: 20%;">{{ announcement.date | markdownify }}<br />{{ announcement.place }}</th>
4545
<td style="width: 90%; padding-left:10px;">
46-
<b>{{ event.name[page.lang] | markdownify }}</b>
46+
<b>{{ announcement.name[page.lang] | markdownify }}</b>
4747
<br />
48-
{{ event.event[page.lang] | markdownify }}
48+
{{ announcement.event[page.lang] | markdownify }}
4949
<br />
50-
{% if event.registration %} - <u><a href='{{ event.registration }}' target='_blank'>Registration</a></u>{% endif %}
51-
{% if event.program %} - <u><a href='{{ event.program }}' target='_blank'>Program</a></u>{% endif %}
52-
{% if event.report %} - <u><a href='{{ event.report }}' target='_blank'>Report</a></u>{% endif %}
53-
{% if event.registration %} - <u><a href='{{ event.further_info }}' target='_blank'>Further information</a></u>{% endif %}
50+
{% if announcement.registration %} - <u><a href='{{ event.registration }}' target='_blank'>Registration</a></u>{% endif %}
51+
{% if announcement.program %} - <u><a href='{{ event.program }}' target='_blank'>Program</a></u>{% endif %}
52+
{% if announcement.report %} - <u><a href='{{ event.report }}' target='_blank'>Report</a></u>{% endif %}
53+
{% if announcement.further_info %} - <u><a href='{{ event.further_info }}' target='_blank'>Further information</a></u>{% endif %}
5454
</td>
5555
</tr>
5656
</table>

0 commit comments

Comments
 (0)