You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
943 B
39 lines
943 B
|
13 years ago
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||
|
|
<head>
|
||
|
|
<link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}styles/global.css" media="all" />
|
||
|
|
<link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}styles/two_cols.css" media="screen" />
|
||
|
|
|
||
|
|
<title>{% block title %}Page Name{% endblock %}</title>
|
||
|
|
</head>
|
||
|
|
|
||
|
|
<body>
|
||
|
|
<div id="global">
|
||
|
|
<div id="entete">
|
||
|
|
<h1>OVPN Console</h1>
|
||
|
|
</div>
|
||
|
|
<div id="top_menu">
|
||
|
|
<ul>
|
||
|
|
{% block menu_top %}
|
||
|
|
{% endblock %}
|
||
|
|
</ul>
|
||
|
|
</div>
|
||
|
|
<div id="navigation">
|
||
|
|
{% block navigation %}
|
||
|
|
|
||
|
|
{% endblock %}
|
||
|
|
</div>
|
||
|
|
<div id="menu">
|
||
|
|
{% block menu %}
|
||
|
|
{% endblock %}
|
||
|
|
<a href="{% url search %}"><img src="{{ MEDIA_URL }}images/search.png"/> Chercher </a>
|
||
|
|
</div>
|
||
|
|
<div id="contenu">
|
||
|
|
{% block contenu %}
|
||
|
|
{% endblock %}
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|