2016-03-20 16:10:00 +01:00
|
|
|
<!DOCTYPE html>
|
2020-09-10 10:50:47 +02:00
|
|
|
<html lang="en">
|
2016-03-21 22:42:29 +01:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
2020-09-10 10:50:47 +02:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
2016-03-21 22:42:29 +01:00
|
|
|
<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>
|
|
|
|
<link rel="shortcut icon" href="/static/img/favicon.ico">
|
|
|
|
<meta name="theme-color" content="#037">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-3 col-sm-3">
|
|
|
|
<a href="/">
|
|
|
|
<img class="img-responsive logo" src="/static/img/binary_kitchen.svg" alt="Binary Kitchen"/>
|
|
|
|
</a>
|
|
|
|
<hr/>
|
2020-09-10 10:50:47 +02:00
|
|
|
<nav class="nav nav-pills flex-column">
|
2016-04-16 21:00:01 +02:00
|
|
|
{% for ni, func in nav %}
|
2020-09-10 10:50:47 +02:00
|
|
|
<a class="nav-link{%- if request.path == url_for(func) %} active{% endif %}" href="{{ url_for(func) }}">{{ ni }}</a>
|
2016-03-21 22:42:29 +01:00
|
|
|
{% endfor %}
|
2020-09-10 10:50:47 +02:00
|
|
|
</nav>
|
2016-03-21 22:42:29 +01:00
|
|
|
</div>
|
|
|
|
<div class="col-md-9 col-sm-9">
|
2016-03-20 16:10:00 +01:00
|
|
|
{% block content %}
|
|
|
|
{% endblock %}
|
|
|
|
</div>
|
2016-03-21 22:42:29 +01:00
|
|
|
</div>
|
2020-09-10 10:50:47 +02:00
|
|
|
<footer class="mt-2">
|
2019-02-12 09:40:20 +01:00
|
|
|
<p>Binary Kitchen: Directory Self-Service, <a href="https://github.com/moepman/bk-dss">source code</a> under
|
2020-09-09 16:56:44 +02:00
|
|
|
MIT license, powered by <a href="https://flask.palletsprojects.com/">Flask</a> and <a href="http://getbootstrap.com/">Bootstrap</a>
|
2016-03-21 22:42:29 +01:00
|
|
|
</p>
|
|
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
</body>
|
2016-03-20 16:10:00 +01:00
|
|
|
</html>
|