mirror of https://github.com/r4sas/py-i2phosts
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.
38 lines
728 B
38 lines
728 B
<html> |
|
<title> |
|
{% block title %} |
|
{{ title }} |
|
{% endblock %} |
|
</title> |
|
<head> |
|
{% block head %} |
|
{% endblock %} |
|
<link rel="stylesheet" type="text/css" href="/static/base.css"> |
|
</head> |
|
<body> |
|
{% block navigation %} |
|
<div class="menu"> |
|
<ul> |
|
<li><a href=/>Home</a></li> |
|
<li><a href={% url faq %}>FAQ</a></li> |
|
<li><a href={% url pyi2phosts.postkey.views.addkey %}>Register a domain</a></li> |
|
</ul> |
|
</div> |
|
{% endblock %} |
|
|
|
<div class="main"> |
|
{% block content %} |
|
{% endblock %} |
|
</div> |
|
|
|
{% block footer %} |
|
<hr> |
|
<div class="footer"> |
|
{% block footer-addon %} |
|
{% endblock %} |
|
powered-by: <a href=http://py-i2phosts.i2p/>py-i2phosts</a> |
|
</div> |
|
{% endblock %} |
|
</body> |
|
</html> |
|
|
|
|