]> 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
8     <link rel="alternate" type="application/rss+xml" title="RSS Feed for latest blocked instances" href="{{base_url}}/rss" />
9     {% block rss %}{% endblock %}
10
11     <link rel="stylesheet" type="text/css" href="{{ url_for('static', path='css/' + theme + '.css') }}" media="all" />
12 </head>
13
14 <body>
15     <div id="header">
16         {% block header %}<h1>Page has no header</h1>{% endblock %}
17     </div>
18
19     <div id="content">
20         {% block content %}Page has no content!{% endblock %}
21     </div>
22
23     <div id="footer">
24         {% block footer %}
25             Source code:
26             <a href="https://git.mxchange.org/?p=fba.git;a=summary" rel="source" target="_blank">git.mxchange.org</a><br /><br />
27             {% if slogan %}
28                 {{slogan}}
29             {% else %}
30                 <b>No slogan was found!</b>
31             {% endif %}
32         {% endblock %}
33     </div>
34 </body>
35 </html>