forked from moepman/bk-dss
1
0
Fork 0

Use Bootstrap.

This commit is contained in:
Markus 2015-06-16 22:26:10 +02:00
parent 691346e75a
commit 67117ebf3c
3 changed files with 12 additions and 2 deletions

View File

@ -8,3 +8,7 @@ TBA
* py-flask >= 0.10
* py-flask-wtf >= 0.10
## Misc
Source code is under MIT license, powered by Flask and Bootstrap.

5
static/css/bootstrap.min.css vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -2,13 +2,14 @@
<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: LDAP User Administration Portal</title>
</head>
<body>
<header>
<img src="static/img/binary_kitchen.svg" alt="Binary Kitchen">
<h1>User Self-Service Portal</h1>
<h1>LDAP User Administration Portal</h1>
</header>
<nav>
{% block navigation %}
@ -19,7 +20,7 @@
{% endblock %}
</main>
<footer>
<p>Binary Kitchen: LDAP User Administration Portal, <a href="https://github.com/moepman/bk-luap">source code</a> under MIT license.</p>
<p>Binary Kitchen: LDAP User Administration Portal, <a href="https://github.com/moepman/bk-luap">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>