25 lines
937 B
HTML
25 lines
937 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<title>Dénote{% if user.get_full_name|length != 0 %} - {{ user.get_full_name }}{% endif %}</title>
|
||
|
<link rel="icon" type="image/png" href="{{ STATIC_URL }}images/favicon.png" />
|
||
|
{% block head %} {% endblock %}
|
||
|
<link href="{{ STATIC_URL }}css/denote.css" rel="stylesheet" type="text/css"/>
|
||
|
<script type="text/javascript" src="{{ STATIC_URL }}js/denote.js"> </script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<!-- Header -->
|
||
|
<div class="settings"><a href="/user/edit">Settings</a> <a href="/disconnect">Disconnect</a></div>
|
||
|
<!-- Left panel -->
|
||
|
<div id="left_panel">
|
||
|
<a id="home_icon" href="/" alt="Home"><img src="{{ STATIC_URL }}images/home.png"/></a><br/><br/>
|
||
|
</div>
|
||
|
<div id="main_panel">
|
||
|
<div id="content">
|
||
|
{% block content %} {% endblock %}
|
||
|
</div>
|
||
|
</div>
|
||
|
<br/><br/><br/>
|
||
|
<center><a href="http://indefero.soutade.fr/p/denote">Dénote</a> 0.1</center>
|
||
|
</body>
|
||
|
</html>
|