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