2015-06-16 21:57:44 +02:00
<!DOCTYPE html>
< html >
< head >
< meta charset = "UTF-8" >
2015-06-16 22:26:10 +02:00
< link href = "static/css/bootstrap.min.css" type = "text/css" rel = "stylesheet" >
2015-06-16 21:57:44 +02:00
< link href = "static/css/style.css" type = "text/css" rel = "stylesheet" >
2016-02-10 16:52:01 +01:00
< title > Binary Kitchen: Directory Self-Service< / title >
2015-06-16 21:57:44 +02:00
< / head >
< body >
< header >
< img src = "static/img/binary_kitchen.svg" alt = "Binary Kitchen" >
2016-02-10 16:52:01 +01:00
< h1 > Directory Self-Service< / h1 >
2015-06-16 21:57:44 +02:00
< / header >
< nav >
2015-06-17 20:34:30 +02:00
< ul >
{% for ni in nav %}
< li > < a href = "{{ url_for(ni) }}" > {{ ni|capitalize }}< / a > < / li >
{% endfor %}
< / ul >
2015-06-16 21:57:44 +02:00
< / nav >
< main >
{% block content %}
{% endblock %}
< / main >
< footer >
2016-02-10 16:52:01 +01:00
< 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 >
2015-06-16 21:57:44 +02:00
< / footer >
< / body >
< / html >