Statistics
| Branch: | Tag: | Revision:

root / templates / m_base.html @ 6ee21ffd

History | View | Annotate | Download (1 kB)

1 064ecc91 Leonidas Poulopoulos
<!DOCTYPE html>
2 064ecc91 Leonidas Poulopoulos
<html>
3 064ecc91 Leonidas Poulopoulos
<head>
4 064ecc91 Leonidas Poulopoulos
        <meta charset="utf-8">
5 064ecc91 Leonidas Poulopoulos
        <meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1">
6 064ecc91 Leonidas Poulopoulos
        <title>GRNET VM mgmt</title>
7 064ecc91 Leonidas Poulopoulos
        <link rel="stylesheet"  href="http://code.jquery.com/mobile/1.0a4.1/jquery.mobile-1.0a4.1.min.css" />
8 064ecc91 Leonidas Poulopoulos
        <script type="text/javascript" src="http://code.jquery.com/jquery-1.5.min.js"></script>
9 064ecc91 Leonidas Poulopoulos
10 064ecc91 Leonidas Poulopoulos
        <script type="text/javascript" src="http://code.jquery.com/mobile/1.0a4.1/jquery.mobile-1.0a4.1.min.js"></script>
11 064ecc91 Leonidas Poulopoulos
</head> 
12 064ecc91 Leonidas Poulopoulos
<body>
13 064ecc91 Leonidas Poulopoulos
<div data-role="page" data-theme="b" id="grnet_vm">
14 064ecc91 Leonidas Poulopoulos
        <!-- start header -->
15 064ecc91 Leonidas Poulopoulos
<div data-role="header" data-nobackbtn="true" data-backbtn="false">
16 064ecc91 Leonidas Poulopoulos
        {% block headerextras %}{%endblock%}
17 064ecc91 Leonidas Poulopoulos
        <h1>GRNET VM mgmt</h1>
18 064ecc91 Leonidas Poulopoulos
        {% if not user.is_authenticated %}
19 064ecc91 Leonidas Poulopoulos
        <a href="{% url loginpage %}" data-rel="dialog" class="ui-btn-right">Login</a>
20 064ecc91 Leonidas Poulopoulos
        {% else %}<a class="ui-btn-right" href="{% url logout %}" rel="external">Logout</a> {% endif %}
21 064ecc91 Leonidas Poulopoulos
</div>
22 064ecc91 Leonidas Poulopoulos
<!-- end header -->
23 064ecc91 Leonidas Poulopoulos
        
24 064ecc91 Leonidas Poulopoulos
        <div data-role="content">
25 064ecc91 Leonidas Poulopoulos
                {% block content %}{% endblock %}
26 064ecc91 Leonidas Poulopoulos
        </div>
27 064ecc91 Leonidas Poulopoulos
</div>
28 064ecc91 Leonidas Poulopoulos
</body>
29 064ecc91 Leonidas Poulopoulos
</html>