File: base.html

package info (click to toggle)
appstream-generator 0.10.1-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,344 kB
  • sloc: cpp: 42,038; python: 292; xml: 259; sh: 223; makefile: 20
file content (42 lines) | stat: -rw-r--r-- 1,122 bytes parent folder | download
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
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="description" content="">
    <meta name="author" content="">

    <title>AppStream Report for {{project_name}} - {% block title %}{% endblock %}</title>

    <link href="{{root_url}}/static/css/style.css" rel="stylesheet" type="text/css" />
    <link rel="shortcut icon" href="{{root_url}}/static/img/favicon.png">

    {% block head_extra %}{% endblock %}
  </head>

<body>
<div class="headbar">
  <div class="headbar-content avoidwrap">
    {% block header_content %}{% endblock %}
  </div>
  <div class="headbar-content-right avoidwrap">
    {% block float_right %}{% endblock %}
  </div>
</div>

<div class="content">
  {% block content %}{% endblock %}
</div>

<hr />

<footer>
<p style="font-size:0.8em;">
    Generated by <a href="https://github.com/ximion/appstream-generator">appstream-generator</a> (v{{generator_version}}).
</p>
{% block page_details %}{% endblock %}
</footer>

</body>
</html>