aboutsummaryrefslogtreecommitdiffstats
path: root/templates/layout.html
blob: dc9be11b7c8b537949dd60a3e57513b22bf846a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
  <head>
    <title>{% block title %}Site de la famille{% endblock %}</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <link rel="stylesheet" media="screen" type="text/css" href="{{ url_for('static', filename = 'style.css') }}" />
    <!-- <link rel="alternate" type="application/rss+xml" title="Les actualités" href="rss.xml" /> -->
  </head>
  <body>
    {% block body %}
    <div class="container">
      <div class="sheet">
	<div class="top">
	  <p><strong>{{session['user_name']}}</strong>
	    (<a href="/user/edit">Mon compte</a> | <a href="/logout">Se déconnecter</a>)</p>
      </div>
      <div class="main_menu">
	<table>
	  <tr>
	    <td><a href="/">Accueil</a></td>
	    <td><a href="/article/">Articles</a></td>
	    <td><a href="/user/">Famille</a></td>
	    <td><a href="/system/">Système</a></td>
	  </tr>
	</table>
      </div>
      <div class="main">
	{% block content %}{% endblock %}
      </div>
    </div>
  </div>
  {% endblock body %}
</body>
</html>