Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (4.3 kB)

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

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

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

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

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

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

    
85
                <div class="mainlogo">
86
            <a href="{% url index %}">
87
                                <img src="{{ BRANDING_DASHBOARD_LOGO_URL }}" alt="{{ BRANDING_SERVICE_NAME }} Dashboard" />
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>