Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / templates / im / base.html @ b27c104d

History | View | Annotate | Download (4.5 kB)

1
<!doctype html>
2
<head>
3
  {% block starthead %}{% endblock starthead %}
4
  <meta charset="UTF-8">
5
  
6
  <meta http-equiv="X-UA-Compatible" content="{{ resource.meta.compatibility }}">
7
  
8
  <title>
9
     {% block page.title %}{% endblock %} / GRNET Cloud Accounts 
10
  </title>
11
  
12
  <meta name="description" content="">
13
  <meta name="author" content="">
14
  <meta name="viewport" content="width=device-width, initial-scale=1.0,minimum-scale=1.0, maximum-scale=1.0">
15
    
16
  {% block page.js %}
17
  <!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
18
  <!--[if lt IE 9]>
19
      <script src="{{ IM_STATIC_URL }}js/html5.js"></script>
20
  <![endif]-->
21
  {% endblock %}
22
  
23
  {% block page.favicons %}
24
  <link rel="shortcut icon" href="">
25
  <link rel="apple-touch-icon" href="">
26
  {% endblock page.favicons %}
27

    
28
  {% block page.css %}
29
       
30
      <link href='http://fonts.googleapis.com/css?family=Didact+Gothic&subset=latin' rel='stylesheet' type='text/css'>
31
      <link rel="stylesheet" type="text/css" href="{{ IM_STATIC_URL }}css/global.css">
32
      <link rel="stylesheet" type="text/css" href="{{ IM_STATIC_URL }}css/print.css" media="print">
33
      <!--[if lte IE 7]>
34
            <link rel="stylesheet" type="text/css" href="{{ IM_STATIC_URL }}css/ie7.css">
35
      <![endif]-->
36
      <link rel="stylesheet" media="screen and (max-width: 960px)" href="{{ IM_STATIC_URL }}css/max960.css"/>
37
      <link rel="stylesheet" media="screen and (max-width: 768px)" href="{{ IM_STATIC_URL }}css/max768.css"/>  
38
      <link rel="stylesheet" media="screen and (max-width: 480px)" href="{{ IM_STATIC_URL }}css/max480.css"/>  
39
      <link rel="stylesheet" type="text/css" href="{{ IM_STATIC_URL }}css/jquery-ui-1.8.21.custom.css"/>
40
      
41
  {% endblock page.css %}
42

    
43
  {% block headjs %}
44
            <script src="{{ IM_STATIC_URL }}js/jquery-1.7.1.min.js"></script>        
45
            
46
            <script src="{{ IM_STATIC_URL }}js/os.js"></script>        
47
      <script src="{{ IM_STATIC_URL }}js/modernizr-2.0.6.js"></script>        
48
      <script src="{{ IM_STATIC_URL }}js/jquery.js"></script>        
49
      <script src="{{ IM_STATIC_URL }}js/jquery.infieldlabel.js"></script>        
50
      <script src="{{ IM_STATIC_URL }}js/forms.js"></script>
51
      <script src="{{ IM_STATIC_URL }}js/jquery.dropkick-1.0.0.js"></script>
52
      <script src="{{ IM_STATIC_URL }}js/jquery-ui-1.8.21.custom.min.js"></script>
53
      <script src="{{ IM_STATIC_URL }}js/jquery.tablesorter.js"></script>                  
54
      <script src="{{ IM_STATIC_URL }}js/common.js"></script> 
55
  {% endblock headjs %}
56
  {% block endhead %}{% endblock endhead %}
57

    
58
  <script type="text/javascript">
59
      $(document).ready(function() {
60
          $("form.innerlabels label").inFieldLabels();
61
          $("form").each(function(){
62
            if ($(this).hasClass("login")) { return }
63
            $(this).find("input").attr("autocomplete","off");
64
          })
65
          $("form .form-row").formErrors();
66
          $("form .form-row input[type=checkbox]").formCheckBoxes();
67
            
68
          // hide label for captcha field
69
          $("label[for=id_recaptcha_challenge_field]").closest('.form-row').hide();
70
    })
71
  </script>
72

    
73
    {% if CLOUDBAR_ACTIVE %}
74
        {{ CLOUDBAR_CODE }}
75
    {% endif %}
76
</head>
77

    
78
<body>
79
    <div class="container">
80
            <div class="wrapper">       
81
                {% if messages or EXTRA_MESSAGES_SET %}
82
                <div class="top-msg active">
83
                    {% block extra_messages %}{% endblock %}
84
                    {% for message in messages %}
85
                    <div{% if  %} 
86
                        class="msg {{ message.tags }}"{% endif %}>
87
                        {{ message|safe }}</div>
88
                    {% endfor %}
89
                    <a href="#" title="close" class="close">X</a>
90
                </div>
91
                {% endif %}
92
                <div class="mainlogo">
93
                        <a href="/im/">
94
                                <img src="{{ IM_STATIC_URL }}images/accounts-logo.png" alt="accounts" />
95
                        </a>
96
                </div>
97
            {% block page.nav %}
98
            <div class="navigation">
99
                    <ul>
100
                        {% block page.nav.items %}
101
                        {% endblock %}
102
                    </ul>
103
                    <ul>
104
                        {% block page.subnav %}{%endblock %}
105
                    </ul>
106
            </div>
107
            {% endblock %}
108
                <div class="content">
109
                    {% block page.body %}
110
                        <div class="full">
111
                            {% block body %}
112
                            {% endblock %}
113
                        </div>
114
                    {% endblock %}
115
                </div>
116
           </div>
117
    </div>
118
    <div class="footer">
119
        <div class="wrapper">
120
                {% include "im/footer.html" %}
121
        </div>
122
    </div>
123
    
124
</body>
125
</html>