Dynastie/templates/base.html

15 lines
446 B
HTML
Raw Normal View History

2012-07-08 16:23:39 +02:00
<html>
<head>
<title>Dynastie</title>
2012-07-22 10:47:24 +02:00
{% block head %} {% endblock %}
<link href="{{ STATIC_URL }}css/dynastie.css" rel="stylesheet" type="text/css"/>
2012-07-08 16:23:39 +02:00
</head>
<body>
2012-10-09 20:47:12 +02:00
<a href="/user">Users</a> <a href="/blog">Blogs</a> <a href="/disconnect">Disconnect</a><br/><br/>
2012-07-08 16:23:39 +02:00
{% block content %} {% endblock %}
<br/><br/><br/>
<center><a href="http://indefero.soutade.fr/p/dynastie">Dynastie</a> 0.1</center>
2012-07-08 16:23:39 +02:00
</body>
</html>