1
0
mirror of https://github.com/r4sas/py-i2phosts synced 2025-01-22 12:34:17 +00:00

templates/base.html: add navigation block

This commit is contained in:
Hidden Z 2010-11-05 14:06:22 +00:00
parent 09faddf91b
commit fba588688c

View File

@ -10,6 +10,15 @@
<link rel="stylesheet" type="text/css" href="static/base.css">
</head>
<body>
{% block navigation %}
<div class="menu" id="menu">
<ul>
<li><a href=/>Home</a></li>
<li><a href={% url pyi2phosts.postkey.views.addkey %}>Register domain</a></li>
</ul>
</div>
{% endblock %}
<div class="main">
{% block content %}
{% endblock %}