WeatherNews.jl/www/xslate/schedule.html

25 lines
876 B
HTML

<section class="container" id="schedule">
<table>
<thead>
<tr>
<th>title</th>
<th>caster</th>
<th>links</th>
<th class="views">views</th>
<th>time</th>
</tr>
</thead>
<tbody>
: for $r -> $i {
<tr class="m<: $i.mscale :><: $i.live :>">
<td class="segment"><a href="segment/?n=<: $i.title | uri :>"><: $i.title :></a></td>
<td class="caster"><a href="caster/?n=<: $i.caster | uri :>"><: $i.caster :></a></td>
<td class="links"><: include "xslate/_links.html" { i => $i } :></td>
<td class="views"><: $i.view_count :></td>
<td class="datetime"><: $i.jst | date_time :></td>
</tr>
: }
</tbody>
</table>
</section>