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