Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (4.6 kB)

1
{% load astakos_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.cookie.js"></script>                  
56
      <script src="{{ IM_STATIC_URL }}js/mustache.js"></script>
57
      <script src="{{ IM_STATIC_URL }}js/retina.js"></script>
58
      <script src="{{ IM_STATIC_URL }}js/jquery.dataTables.js"></script>
59
      <script src="{{ IM_STATIC_URL }}js/dataTables.date.js"></script>
60
      <script src="{{ IM_STATIC_URL }}js/dataTables.numbersHTML.js"></script>
61
      <script src="{{ IM_STATIC_URL }}js/common.js"></script> 
62
  {% endblock headjs %}
63
  {% block endhead %}{% endblock endhead %}
64

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

    
80
    {% if CLOUDBAR_ACTIVE %}
81
        {{ CLOUDBAR_CODE }}
82
    {% endif %}
83
</head>
84

    
85
<body>
86
    <div class="container">
87
        <div class="wrapper">     
88
            {% display_messages %}
89

    
90
                <div class="mainlogo">
91
            <a href="{% url index %}" title="{{ BRANDING_SERVICE_NAME }} Dashboard">
92
                                <img src="{{ BRANDING_DASHBOARD_LOGO_URL }}" alt="{{ BRANDING_SERVICE_NAME }} Dashboard" />
93
                        </a>
94
                </div>
95
            {% block page.nav %}
96
            <div class="navigation">
97
                    <ul>
98
                        {% block page.nav.items %}
99
                        {% endblock %}
100
                    </ul>
101
                    <ul>
102
                        {% block page.subnav %}{%endblock %}
103
                    </ul>
104
            </div>
105
            {% endblock %}
106
                <div class="content">
107
                    {% block page.body %}
108
                        <div class="full">
109
                            {% block body %}
110
                            {% endblock %}
111
                        </div>
112
                    {% endblock %}
113
                </div>
114
           </div>
115
    </div>
116
    <div class="footer">
117
        <div class="wrapper">
118
                {% include "im/footer.html" %}
119
        </div>
120
    </div>
121
    
122
</body>
123
</html>