1
0
forked from moepman/bk-dss
bk-dss/templates/_base.html

36 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<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>
<div class="container">
<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- TODO scale and show logo
<img src="static/img/binary_kitchen.svg" alt="Binary Kitchen">
-->
<a class="navbar-brand" href="/">Directory Self-Service</a>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
{% for ni in nav %}
<li{%- if request.path == url_for(ni) %} class="active"{% endif %}><a href="{{ url_for(ni) }}">{{ ni|capitalize }}</a></li>
{% endfor %}
</ul>
</div>
</div>
</nav>
{% block content %}
{% endblock %}
<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>
</div>
</body>
</html>