Add html5 doctype
[anoweco.git] / data / templates / latest.htm
1 <!DOCTYPE html>
2 <html xmlns="http://www.w3.org/1999/xhtml">
3  <head>
4   <meta charset="utf-8"/>
5   <title>Latest comments</title>
6   <link rel="stylesheet" type="text/css" href="css/latest.css"/>
7  </head>
8  <body class="h-entry">
9   <h1>Latest comments</h1>
10   <table>
11    <thead>
12     <tr>
13      <th>Date</th>
14      <th>Type</th>
15      <th>User</th>
16      <th>For domain</th>
17     </tr>
18     </thead>
19    <tbody>
20     {% for comment in comments %}
21     <tr>
22      <td><a href="{{comment.url}}">{{comment.comment_published}}</a></td>
23      <td>{{comment.comment_type}}</td>
24      <td>{{comment.user.user_name}}</td>
25      <td><a href="{{comment.comment_of_url}}">{{comment.domain}}</a></td>
26     </tr>
27     {% endfor %}
28    </tbody>
29   </table>
30  </body>
31 </html>