annot-server/webapp/templates/index.html
author ymh <ymh.work@gmail.com>
Thu, 22 Jan 2015 07:04:42 +0100
changeset 108 082b64a5c699
parent 43 e27c3c1c57f1
permissions -rw-r--r--
add vizualizations to server
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
43
e27c3c1c57f1 end of admin. change the index page and add a redirect to it on the landing page
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
     1
<!doctype html>
0
e1d4d7a8255a First shareable version
ymh <ymh.work@gmail.com>
parents:
diff changeset
     2
<html>
43
e27c3c1c57f1 end of admin. change the index page and add a redirect to it on the landing page
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
     3
<head>
e27c3c1c57f1 end of admin. change the index page and add a redirect to it on the landing page
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
     4
  <meta charset="utf-8">
e27c3c1c57f1 end of admin. change the index page and add a redirect to it on the landing page
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
     5
  <meta name="viewport" content="width=device-width, initial-scale=1">
e27c3c1c57f1 end of admin. change the index page and add a redirect to it on the landing page
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
     6
  <title>Mons by IRI</title>
e27c3c1c57f1 end of admin. change the index page and add a redirect to it on the landing page
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
     7
  <link rel="stylesheet" href="{{ config['STATIC_URL'] }}/css/lib.css">
e27c3c1c57f1 end of admin. change the index page and add a redirect to it on the landing page
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
     8
  <link rel="stylesheet" href="{{ config['STATIC_URL'] }}/css/base.css">
e27c3c1c57f1 end of admin. change the index page and add a redirect to it on the landing page
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
     9
</head>
e27c3c1c57f1 end of admin. change the index page and add a redirect to it on the landing page
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    10
<body>
e27c3c1c57f1 end of admin. change the index page and add a redirect to it on the landing page
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    11
  <div class="container" id="index-container">
e27c3c1c57f1 end of admin. change the index page and add a redirect to it on the landing page
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    12
      <h1 class="row">Évènements actifs&nbsp;:</h1>
e27c3c1c57f1 end of admin. change the index page and add a redirect to it on the landing page
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    13
      {% for event in events %}
e27c3c1c57f1 end of admin. change the index page and add a redirect to it on the landing page
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    14
      <div class="row">
e27c3c1c57f1 end of admin. change the index page and add a redirect to it on the landing page
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    15
          <div class="event-label"><a href="{{ url_for('page_annotationclient_event_code', event_code=event.code) }}">{{ event.label }}</a></div>
e27c3c1c57f1 end of admin. change the index page and add a redirect to it on the landing page
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    16
          <dl>
e27c3c1c57f1 end of admin. change the index page and add a redirect to it on the landing page
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    17
              <dt>Code&nbsp;: {{ event.code }}</dt>
e27c3c1c57f1 end of admin. change the index page and add a redirect to it on the landing page
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    18
              <dd>Description&nbsp;: {{ event.description }}</dd>
e27c3c1c57f1 end of admin. change the index page and add a redirect to it on the landing page
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    19
          </dl>
e27c3c1c57f1 end of admin. change the index page and add a redirect to it on the landing page
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    20
      </div>
e27c3c1c57f1 end of admin. change the index page and add a redirect to it on the landing page
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    21
      {% endfor %}
e27c3c1c57f1 end of admin. change the index page and add a redirect to it on the landing page
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    22
  </div>
e27c3c1c57f1 end of admin. change the index page and add a redirect to it on the landing page
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    23
 </body>