42 lines
1.4 KiB
HTML
42 lines
1.4 KiB
HTML
<link rel="stylesheet" href="/static/css/hsl.css">
|
|
<link href="https://fonts.googleapis.com/css?family=Droid+Sans+Mono" rel="stylesheet">
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.19.1/locale/fi.js"></script>
|
|
<div class="container" ng-app="myApp" ng-controller="timetableCtrl">
|
|
<div class="header-row row">
|
|
<div class="col-sm-2"></div>
|
|
<div class="col-sm-8">HSL-Aikataulut</div>
|
|
<div class="col-sm-2 time"><p>{{clock | date:'HH:mm'}}</p></div>
|
|
</div>
|
|
<h1 style="font-size: 10vh; text-align: center" ng-if="error">
|
|
{{error}}
|
|
</h1>
|
|
<table ng-if="!error" class="table table-striped row">
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
Aika
|
|
</th>
|
|
<th>
|
|
Linja
|
|
</th>
|
|
<th>
|
|
Pysäkki
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr class="repeat-item" ng-repeat="x in stoptimes | orderBy: ['timestamp'] | limitTo: 11">
|
|
<td style="min-width: 300px">
|
|
{{x.timestamp}}
|
|
</td>
|
|
<td>
|
|
<strong>{{x.route}}</strong>, {{x.headsign}}
|
|
</td>
|
|
<td>
|
|
{{x.stop}}
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|