Fri, 19 May 2017 21:15:12 +0300
Äää
<html> <head> <meta charset='UTF-8' /> <style> body { font-family: FreeSans, Arial, sans-serif; background: white; color: black; margin: 0; padding: 0; font-size: 24pt; } h1 { padding-top: 10pt; padding-bottom: 10pt; text-align: center; background: #dc9e00; background: linear-gradient(to bottom, #dc9e00 0%,#eaaf19 49%,#dc9e00 92%,#906700 100%); color: white; } a { color: inherit; text-decoration: none; } a:hover { text-decoration: underline; } #aikataulu { width:100%; margin: auto; } #aikataulu td { text-align: center; } td, th, body { font-size: 24pt; } .sarake-aika { width: 15%; } h1 { font-variant: small-caps; } </style> <title>{{linja}} {{selite}}</title> </head> <body> <h1>{{linja}} {{selite}}</h1> <table id='aikataulu'> <tr> <th class='sarake-aika'>Aika</th> <th class='sarake-alue'>Alue</th> </tr> {% for rivi in suppea_reitti %} <tr> <td class='sarake-aika'>{{rivi['aika']}}</td> <td class='sarake-alue'>{{rivi['alue']}}</td> </tr> {% endfor %} </table> </body> </html>