43dc57dc699cc813472abf34fc9618b880f10c2b
[django_unres.git] / django_simple / todo / templates / base.html
1 {% load staticfiles %}
2 <!DOCTYPE html>
3 <html>
4 <head>
5         <title>UNRES - Job lists</title>
6
7         <link rel="stylesheet" type="text/css" href="{% static 'bootstrap/css/bootstrap.min.css' %}">
8         <link rel="stylesheet" type="text/css" href="{% static 'font-awesome/css/font-awesome.min.css' %}">
9         <link rel="stylesheet" type="text/css" href="{% static 'style.css' %}">
10         <style>
11         th,td {
12            padding:5px;
13         }
14         </style>
15 </head>
16 <body>
17
18 <div class="col-sm-6 col-sm-offset-3">
19         
20         <div class="page-header">
21           <h1><a href="/">UNRES server</a> <small> (beta version)</small></h1>
22
23               Lab. of Simul. of Polym. & Lab. of Mol. Model, Faculty of Chemistry, University of Gdansk
24               <br>
25               Ver.08.09.2017 <span class="fa fa-envelope-o"></span> 
26               cezary.czaplewski<span class="fa fa-at"></span>ug.edu.pl
27
28                 <div class="user-name">
29                         {% if not user.is_anonymous %}
30                                 <strong>Logged as:&nbsp;</strong> {{user}} &nbsp;
31                                 <a href="/logout" title="Log out"><span class="fa fa-sign-out"></span></a>
32                         {% endif %}
33                 </div>
34         </div>
35
36         {% block content %}
37         {% endblock %}
38
39 </div>
40
41 </body>
42 </html>