b84f074345fbb493c12e26c049a8d8a3cf47dfbf
[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, 2017
24               <br><span class="fa fa-envelope-o"></span> 
25               cezary.czaplewski<span class="fa fa-at"></span>ug.edu.pl
26
27                 <div class="user-name">
28                         {% if not user.is_anonymous %}
29                                 <strong>Logged as:&nbsp;</strong> {{user}} &nbsp;
30                                 <a href="/logout" title="Log out"><span class="fa fa-sign-out"></span></a>
31                         {% endif %}
32                 </div>
33         </div>
34
35         {% block content %}
36         {% endblock %}
37
38 </div>
39
40 </body>
41 </html>