Statistics
| Branch: | Tag: | Revision:

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

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/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
            
82
            {% display_messages %}
83

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