Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (4.2 kB)

1
{% load astakos_tags %}<!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 %}Accounts{% 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='https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&subset=latin,greek-ext,greek' 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/underscore.js"></script>        
47
            <script src="{{ IM_STATIC_URL }}js/os.js"></script>        
48
      <script src="{{ IM_STATIC_URL }}js/modernizr-2.0.6.js"></script>        
49
      <script src="{{ IM_STATIC_URL }}js/jquery.js"></script>        
50
      <script src="{{ IM_STATIC_URL }}js/jquery.infieldlabel.js"></script>        
51
      <script src="{{ IM_STATIC_URL }}js/forms.js"></script>
52
      <script src="{{ IM_STATIC_URL }}js/jquery.dropkick-1.0.0.js"></script>
53
      <script src="{{ IM_STATIC_URL }}js/jquery-ui-1.8.21.custom.min.js"></script>
54
      <script src="{{ IM_STATIC_URL }}js/jquery.tablesorter.js"></script>                  
55
      <script src="{{ IM_STATIC_URL }}js/common.js"></script> 
56
  {% endblock headjs %}
57
  {% block endhead %}{% endblock endhead %}
58

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

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

    
79
<body>
80
    <div class="container">
81
        <div class="wrapper">       
82
            
83
            {% display_messages %}
84

    
85
                <div class="mainlogo">
86
                <a href="{% url astakos.im.views.index %}">
87
                                <img src="{{ IM_STATIC_URL }}images/accounts-logo.png" alt="accounts" />
88
                        </a>
89
                </div>
90
            {% block page.nav %}
91
            <div class="navigation">
92
                    <ul>
93
                        {% block page.nav.items %}
94
                        {% endblock %}
95
                    </ul>
96
                    <ul>
97
                        {% block page.subnav %}{%endblock %}
98
                    </ul>
99
            </div>
100
            {% endblock %}
101
                <div class="content">
102
                    {% block page.body %}
103
                        <div class="full">
104
                            {% block body %}
105
                            {% endblock %}
106
                        </div>
107
                    {% endblock %}
108
                </div>
109
           </div>
110
    </div>
111
    <div class="footer">
112
        <div class="wrapper">
113
                {% include "im/footer.html" %}
114
        </div>
115
    </div>
116
    
117
</body>
118
</html>