aboutsummaryrefslogtreecommitdiffstats
path: root/fg21sim/webui/templates/base.html
blob: e8f24b3f076d6417a3dfe5e60eda09c7c514ab9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
{#
 # Copyright (c) 2016 Weitian LI <liweitianux@live.com>
 # MIT license
 #
 # Tornado base template for the Web UI of "fg21sim"
 #}
<html>
<head>
  <meta charset="utf-8" />
  <title>{% block title %}TITLE{% end %}</title>
  {% block extra_head %}{% end %}

  {% block css %}
  <link rel="stylesheet" href="{{ static_url('css/normalize.css') }}" />
  <link rel="stylesheet" href="{{ static_url('css/font-awesome.css') }}" />
  <link rel="stylesheet" href="{{ static_url('css/milligram.css') }}" />
  <link rel="stylesheet" href="{{ static_url('css/main.css') }}" />
  {% block extra_css %}{% end %}
  {% end %}

  {% block head_script %}{% end %}
</head>
<body>
  {% block header %}{% end %}

  {% block main %}{% end %}

  {% block footer %}{% end %}

  {% block script %}
  <script src="//code.jquery.com/jquery-3.1.1.min.js"></script>
  <script src="{{ static_url('js/main.js') }}"></script>
  {% block extra_script %}{% end %}
  {% end %}
</body>
</html>