annot-server/webapp/templates/index.html
author ymh <ymh.work@gmail.com>
Fri, 23 Jan 2015 11:31:51 +0100
changeset 138 30dc3baf1ab9
parent 43 e27c3c1c57f1
permissions -rw-r--r--
correct timeline archive loading again

<!doctype html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>Mons by IRI</title>
  <link rel="stylesheet" href="{{ config['STATIC_URL'] }}/css/lib.css">
  <link rel="stylesheet" href="{{ config['STATIC_URL'] }}/css/base.css">
</head>
<body>
  <div class="container" id="index-container">
      <h1 class="row">Évènements actifs&nbsp;:</h1>
      {% for event in events %}
      <div class="row">
          <div class="event-label"><a href="{{ url_for('page_annotationclient_event_code', event_code=event.code) }}">{{ event.label }}</a></div>
          <dl>
              <dt>Code&nbsp;: {{ event.code }}</dt>
              <dd>Description&nbsp;: {{ event.description }}</dd>
          </dl>
      </div>
      {% endfor %}
  </div>
 </body>