Statistics
| Branch: | Tag: | Revision:

root / astakos / im / templates / im / base.html @ 1e685275

History | View | Annotate | Download (3.6 kB)

1
<!doctype html>
2
<!--[if lt IE 7 ]> <html lang="en" class="no-js ie6"> <![endif]-->
3
<!--[if IE 7 ]>    <html lang="en" class="no-js ie7"> <![endif]-->
4
<!--[if IE 8 ]>    <html lang="en" class="no-js ie8"> <![endif]-->
5
<!--[if (gte IE 9)|!(IE)]><!--> <html lang="en" class="no-js"> <!--<![endif]-->
6
<head>
7
  {% block starthead %}{% endblock starthead %}
8
  <meta charset="UTF-8">
9
  
10
  <meta http-equiv="X-UA-Compatible" content="{{ resource.meta.compatibility }}">
11
  
12
  <title>
13
     {% block page.title %}{% endblock %} / GRNET Cloud Accounts 
14
  </title>
15
  
16
  <meta name="description" content="">
17
  <meta name="author" content="">
18
  <meta name="viewport" content="">
19
    
20
  {% block page.js %}
21
  <!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
22
  <!--[if lt IE 9]>
23
      <script src="{{ IM_MEDIA_URL }}js/html5.js"></script>
24
  <![endif]-->
25
  {% endblock %}
26
  
27
  {% block page.favicons %}
28
  <link rel="shortcut icon" href="">
29
  <link rel="apple-touch-icon" href="">
30
  {% endblock page.favicons %}
31

    
32
  {% block page.css %}
33
      <link href='http://fonts.googleapis.com/css?family=Antic' 
34
        rel='stylesheet' type='text/css'>
35
      <link rel="stylesheet" href="{{ IM_MEDIA_URL }}css/styles.css" 
36
        type='text/css'>
37
      <link rel="stylesheet" href="{{ IM_MEDIA_URL }}css/custom.css" 
38
        type='text/css'>
39
  {% endblock page.css %}
40

    
41
  {% block headjs %}
42
      <script src="{{ IM_MEDIA_URL }}js/modernizr-2.0.6.js"
43
          type="text/javascript"></script>
44
      <script src="{{ IM_MEDIA_URL }}js/jquery.js" 
45
          type="text/javascript"></script>
46
      <script src="{{ IM_MEDIA_URL }}js/jquery.infieldlabel.js" 
47
          type="text/javascript"></script>
48
      <script src="{{ IM_MEDIA_URL }}js/bootstrap-tooltip.js" 
49
          type="text/javascript"></script>
50
      <script src="{{ IM_MEDIA_URL }}js/form-errors.js" 
51
          type="text/javascript"></script>
52
  {% endblock headjs %}
53
  {% block endhead %}{% endblock endhead %}
54

    
55
  <script type="text/javascript">
56
      $(document).ready(function() {
57
          $("form.innerlabels label").inFieldLabels();
58
          $("form input").attr('autocomplete', 'off');
59
          $("form .form-row").formErrors();
60
      })
61
  </script>
62
</head>
63

    
64
<body>
65
    <div class='container'>
66
        <div class='header'>
67
            <div class="mainlogo">
68
                <h1>accounts</h1>
69
            </div>
70
            
71
            <ul class="mainnav inline quicknav">
72
                {% block page.quicknav.items %}
73
                    <li class="{% block signup_class %}{% endblock %}">
74
                        <a href="{% url astakos.im.views.index %}">Login</a>
75
                    </li>
76
                    <li class="{% block signin_class %}{% endblock %}">
77
                        <a href="{% url astakos.im.views.signup %}">Sign up</a>
78
                    </li>
79
                {% endblock %}
80
            </ul>
81

    
82
            {% block page.nav %}
83
            <ul class="mainnav inline">
84
                {% block page.nav.items %}
85
                {% endblock %}
86
            </ul>
87
            {% endblock %}
88
        </div>
89
        <div class="page">
90
            {% if messages %}
91
            <ul class="messages">
92
                {% for message in messages %}
93
                <li{% if  %} 
94
                    class="{{ message.tags }}"{% endif %}>
95
                    {{ message }}</li>
96
                {% endfor %}
97
            </ul>
98
            {% endif %}
99
            {% block page.body %}
100
                <div class="maincol">
101
                    {% block body %}
102
                    {% endblock %}
103
                </div>
104
            {% endblock %}
105
        </div>
106
    </div>
107
    <div class="footer">
108
    </div>
109
</body>
110
</html>