-
Notifications
You must be signed in to change notification settings - Fork 1
/
tickets.html
47 lines (46 loc) · 995 Bytes
/
tickets.html
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
---
layout: basic
---
{% include strings.html %}
<h1>
{{ page.rdf | rdf_property: "rdfs:label", site.language }}
</h1>
<p>{{ page.rdf | rdf_property: "dct:description", site.language | markdownify }}</p>
<h2>
{{ str_pricetable }}
</h2>
<div class="ce-table ce-table-tickets" role="region" aria-labelledby="ce-table-caption-0" tabindex="0">
<table>
<caption id="ce-table-caption-0" class="hideme">
{{ str_pricetable }}
</caption>
<thead>
<tr>
<th scope="col">
Ticket
</th>
<th scope="col">
{{ str_price }}
</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">
{{str_dayticket}}
</th>
<td>
100,-€
</td>
</tr>
<tr>
<th scope="row">
{{str_weekticket}}
</th>
<td>
300,-€
</td>
</tr>
</tbody>
</table>
</div>