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>
|