1
0
forked from moepman/bk-dss
bk-dss/templates/base.html
2016-02-10 16:52:01 +01:00

30 lines
853 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link href="static/css/bootstrap.min.css" type="text/css" rel="stylesheet">
<link href="static/css/style.css" type="text/css" rel="stylesheet">
<title>Binary Kitchen: Directory Self-Service</title>
</head>
<body>
<header>
<img src="static/img/binary_kitchen.svg" alt="Binary Kitchen">
<h1>Directory Self-Service</h1>
</header>
<nav>
<ul>
{% for ni in nav %}
<li><a href="{{ url_for(ni) }}">{{ ni|capitalize }}</a></li>
{% endfor %}
</ul>
</nav>
<main>
{% block content %}
{% endblock %}
</main>
<footer>
<p>Binary Kitchen: Directory Self-Service, <a href="https://github.com/moepman/bk-diss">source code</a> under MIT license, powered by <a href="http://flask.pocoo.org/">Flask</a> and <a href="http://getbootstrap.com/">Bootstrap</a></p>
</footer>
</body>
</html>