summaryrefslogtreecommitdiffstats
path: root/templates/base.html
blob: 6e4e4037b51378720d752541203f68744217c753 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{%- set styles = ['layout.css'] + styles|default([]) %}
{%- set scripts = [] + scripts|default([]) %}
<!doctype html>
<html>
  <head>
    <title>{% if title %}{{ title }}{% endif %}spline accounts</title>
    {%- for script in scripts %}
      <script type="text/javascript" src="{{ url_for('static', filename=script) }}"></script>
    {%- endfor %}
    {%- for style in styles %}
      <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename=style) }}">
    {%- endfor %}
  </head>
  <body>
    <h1>{% if title %}{{ title }}{% else %}spline accounts{% endif %}</h1>
    {% block content %}{% endblock %}
  </body>
</html>