mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-03-31 01:11:36 +08:00
36 lines
1.0 KiB
HTML
36 lines
1.0 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{{ title }}</title>
|
|
|
|
<link rel="shortcut icon" type="image/vnd.microsoft.icon"
|
|
href="//fedoraproject.org/static/images/favicon.ico"/>
|
|
|
|
<link rel="stylesheet" href="{{ basepath }}/ui/fedora/fedora.css">
|
|
|
|
<meta name="generator" content="Ipsilon">
|
|
|
|
{%- if heads %}
|
|
{%- for group, value in heads.items() %}
|
|
{%- for head in value %}
|
|
{{ head }}
|
|
{%- endfor %}
|
|
{%- endfor %}
|
|
{%- endif %}
|
|
</head>
|
|
<body>
|
|
<div class="header_bg">
|
|
<div class="body header">
|
|
<img id="logo" alt="logo" src="{{ basepath }}/ui/fedora/fedora-authn-logo-white.png"/>
|
|
</div>
|
|
</div>
|
|
<div class="body main">
|
|
<p id="toptext">{% block toptext %}{% endblock %}</p>
|
|
<div class="middlebox">
|
|
{% block main %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|