]> git.mxchange.org Git - fba.git/blob - templates/base.html
Continued:
[fba.git] / templates / base.html
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4     <title>fedi-block-api - {% block title %}{% endblock %}</title>
5
6     <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
7     <base href="{{base_url}}" />
8
9     <link rel="alternate" type="application/rss+xml" title="RSS Feed for latest blocked instances" href="rss" />
10     {% block rss %}{% endblock %}
11
12     <link rel="stylesheet" type="text/css" href="{{ url_for('static', path='css/' + theme + '.css') }}?v=0.0.1" media="all" />
13 </head>
14
15 <body>
16     <div id="header">
17         {% block header %}<h1>Page has no header</h1>{% endblock %}
18     </div>
19
20     <div id="content">
21         {% block content %}Page has no content!{% endblock %}
22     </div>
23
24     <div id="footer">
25         {% block footer %}
26             Source code:
27             <a href="https://git.mxchange.org/?p=fba.git;a=summary" rel="source" target="_blank">git.mxchange.org</a><br /><br />
28             {% if slogan %}
29                 {{slogan}}
30             {% else %}
31                 <b>No slogan was found!</b>
32             {% endif %}
33         {% endblock %}
34     </div>
35 </body>
36 </html>