david/openvpnstatus
david
/
openvpnstatus
Archived
1
0
Fork 0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
openvpnstatus/templates/layout.html

20 lines
455 B
HTML

<!doctype html>
<html>
<head>
{% block head %}
<title>{% block title %}socialnerds.org{% endblock %}</title>
{% endblock %}
</head>
<body>
<div id="content">
{% block content %}{% endblock %}
</div>
<div id="footer">
{% block footer %}
<br>
{% if username %} <a href="/">home</a> | <a href="status">status</a> | <a href="logout">logout</a>{% endif %}
{% endblock %}
</div>
</body>
</html>