aboutsummaryrefslogtreecommitdiff
path: root/templates/header.html
blob: 89468a3f1793002f642611524774673ddd082446 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<html>
<head>
  {% if dl != None %}
    <meta http-equiv="REFRESH" content="0;url={{ dl }}">
  {% endif %}
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  <title>{{site_name}}</title>
  <link href="//www.linaro.org/remote/css/init.css"
        rel="stylesheet" type="text/css" >
  <link href="//www.linaro.org/remote/css/remote.css"
        rel="stylesheet" type="text/css" >
  <script language="javascript" type="text/javascript"
          src="//www.linaro.org/remote/js/linarofamily.js"></script>
  <script type="text/javascript" src="/js/jquery-1.7.2.js"></script>
  <script type="text/javascript" src="/js/jquery-ui-1.8.23.custom.min.js"></script>
  <script type="text/javascript" src="//cdn.datatables.net/1.10.10/js/jquery.dataTables.min.js"></script>
  <link rel="stylesheet" type="text/css" href="/css/jquery-ui/jquery-ui-1.8.23.custom.css">
  <link rel="stylesheet" type="text/css" href="/css/linaro.css">
  <link rel="stylesheet" type="text/css" href="//cdn.datatables.net/1.10.10/css/jquery.dataTables.min.css">
  <style type="text/css">
    div#footer {
      text-align: right;
      margin: 10px;
      padding: 10px;
      width: 75%;
    }
  </style>

  {% include 'google-analytics.html' %}
</head>
<body>
<div id="head">
  <h1>{{site_name}}</h1>
</div>
<div id="content">
  {% block content %}{% endblock %}
</div>
<div id="footer">
  Running <a href="https://git.linaro.org/infrastructure/linaro-license-protection.git">linaro-license-protection</a> <a href="https://git.linaro.org/infrastructure/linaro-license-protection.git/commit/{{ revno }}">{{ revno }}</a>.
</div>
</body>
</html>