blob: 68cf221609fefebf7183297d9b6ae7f4c3d2f0e0 (
plain)
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
|
<div class="container">
% if ($wref->{s} and $wref->{p} and $wref->{ws}) {
<p>
<%= $wref->{s} %>: Gleis <%= $wref->{p} %> <%= $wref->{ws} %>
</p>
% }
% if (defined $wref->{d}) {
<div style="text-align: center;">
% if ($wref->{d} == 100) {
<i class="material-icons">arrow_back</i>
% }
% else {
<i class="material-icons">arrow_forward</i>
% }
</div>
% }
<div>
<a href="<%= $wagon_file %>"><img src="<%= $wagon_file %>" style="width: 100%;"></a>
</div>
% if (defined $wref->{d}) {
<div style="text-align: center;">
% if ($wref->{d} == 100) {
<i class="material-icons">arrow_back</i>
% }
% else {
<i class="material-icons">arrow_forward</i>
% }
</div>
% }
<p class="copyright">
Abbildung © Seemanngrafik d.i.p. im Auftrag der Deutschen Bahn AG,
lizensiert unter CC-BY-4.0
</p>
</div>
|