<html>
  <head>
    <title>{{month}} {{year}}</title>
    <link href="/css" rel="stylesheet" type="text/css" media="screen" />
  </head>
  <body>
    <h1>
      IFC Fixed Calendar: {{month}}, {{year}} years after the invention of
      agriculture
    </h1>
    <table>
      <thead>
        <tr>
          <th>Sunday</th>
          <th>Monday</th>
          <th>Tuesday</th>
          <th>Wednesday</th>
          <th>Thursday</th>
          <th>Friday</th>
          <th>Saturday</th>
        </tr>
      </thead>

      <tbody>
        {{#weeks}}
        <tr>
          {{#days}}
          <td class="{{highlight}}">{{day}}</td>
          {{/days}}
        </tr>
        {{/weeks}}
      </tbody>
    </table>
  </body>
</html>