|
5 | 5 | <td style="width: 80%; padding-left:10px;"/> |
6 | 6 | </tr> |
7 | 7 | <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> |
9 | 9 | <td style="width: 90%; padding-left:10px;"> |
10 | 10 | <b>{{ announcement.name[page.lang] | markdownify }}</b> |
11 | 11 | <br /> |
|
14 | 14 | {% if announcement.registration %} - <u><a href='{{ event.registration }}' target='_blank'>Registration</a></u>{% endif %} |
15 | 15 | {% if announcement.program %} - <u><a href='{{ event.program }}' target='_blank'>Program</a></u>{% endif %} |
16 | 16 | {% 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 %} |
18 | 18 | </td> |
19 | 19 | </tr> |
20 | 20 | </table> |
|
23 | 23 | <br/> |
24 | 24 | <div class="tab"> |
25 | 25 | {% 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 %} |
31 | 31 | <button class="tablinks" onclick="openYear(event, '{{year}}')" id="{{id}}">{{y}}</button> |
32 | 32 | {% endfor %} |
33 | 33 | </div> |
34 | 34 |
|
35 | 35 | {% for year in site.data.events.conf.former_years %} |
36 | 36 | <div id="{{year}}" class="tabcontent"> |
37 | | - {% for event in site.data.events[year] %} |
| 37 | + {% for announcement in site.data.events[year] %} |
38 | 38 | <table style="width: 100%;"> |
39 | 39 | <tr> |
40 | 40 | <th style="width: 20%;"/> |
41 | 41 | <td style="width: 80%; padding-left:10px;"/> |
42 | 42 | </tr> |
43 | 43 | <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> |
45 | 45 | <td style="width: 90%; padding-left:10px;"> |
46 | | - <b>{{ event.name[page.lang] | markdownify }}</b> |
| 46 | + <b>{{ announcement.name[page.lang] | markdownify }}</b> |
47 | 47 | <br /> |
48 | | - {{ event.event[page.lang] | markdownify }} |
| 48 | + {{ announcement.event[page.lang] | markdownify }} |
49 | 49 | <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 %} |
54 | 54 | </td> |
55 | 55 | </tr> |
56 | 56 | </table> |
|
0 commit comments