-
+ 23B3FCDE9E6F472619C9DC5AB61A54BA16BCC45184E72E8C6F15B1397F56E771C66D22C3FBA478A76298C7A499BF9C9C875FC4F80AA53619B77CE4636FB49CEB
logotron/templates/chan-nav-table.html
(0 . 0)(1 . 21)
1178 <table class='chan-list' align="center">
1179 <thead>
1180 <tr>
1181 {% for chan_item in chan_list %}
1182 <th>
1183 <a class='chan-link {% if chan_item.name == chan %}chan-link-active{% endif %}'
1184 href='{{ chan_item.chan_url }}'><b>{{ chan_item.name }}</b></a>
1185 </th>
1186 {% endfor %}
1187 </tr>
1188 </thead>
1189 <tbody>
1190 <tr>
1191 {% for chan_item in chan_list %}
1192 <td>
1193 <a class='chan-last-active-link' href='{{ chan_item.last_time_url }}'>{{ chan_item.last_time_txt }}</a>
1194 </td>
1195 {% endfor %}
1196 </tr>
1197 </tbody>
1198 </table>