Thu, 31 Aug 2017 21:30:34 +0300
Hups
<html> <head> <link rel="icon" type="image/png" href="../static/favicon.png" /> <link rel="stylesheet" type="text/css" href="../static/style.css" /> <meta charset='UTF-8' /> <meta http-equiv='refresh' content='60'> <title>{{name}}</title> {% if amount_of_stops_in_cluster >= 5 %} <style> div.stops-in-cluster { margin-left: auto; margin-right: auto; } div.stops-in-cluster ul { columns: 3; } </style> {% endif %} <style> div.stops-in-cluster li { text-align: center; } .sarake-määränpää, .sarake-pysäkki { text-align: left; } /* body { background: url('/static/tausta-pysäkki.png') no-repeat center center fixed; background-size: cover; }*/ </style> </head> <body> <h1><img src="../static/pysäkki.png" height="96" /> <span>{{name}}</span></h1> <p id="pysäkki-info"> <a class="pysäkki-sijainti" href="{{link_to_map}}" target="_blank">📌 ({{location}})</a> </p> <div class="stops-in-cluster"> <ul> {% for stop in stops_in_cluster %} <li><a href="../pysäkki/{{stop['id']}}"><img src="../static/pysäkki.png" height="24" /> {{stop['code']}} {{stop['name']}}</a></li> {% endfor %} </ul> </div> <table class='aikataulu' cellspacing="0"> <tr> <th class='sarake-aika'>{{tr('time', 'headings')}}</th> <th class='sarake-linja'>{{tr('route', 'headings')}}</th> <th class='sarake-määränpää'>{{tr('destination', 'headings')}}</th> <th class='sarake-pysäkki'>{{tr('bus-stop', 'headings')}}</th> </tr> {% for halt in schedule %} <tr class="{% if halt['night'] %} yö {% endif %}"> <td class='sarake-aika'> {% if halt['imminent'] %} <span class='imminent-leave'>●</span> {% endif %} {{halt['time']}} </td> <td class='sarake-linja linja'> <a href="../trip/{{halt['trip']}}">{{halt['route']}}</a> </td> <td class='sarake-määränpää'> <a href="../trip/{{halt['trip']}}">{{halt['sign']}}</a> </td> <td class='sarake-pysäkki'> <a href="../stop/{{halt['stop_id']}}"><img src="../static/pysäkki.png" height="24" /> {{halt['stop_code']}}</a> </td> </tr> {% endfor %} </table> </body> </html>