blob: 6e9f08aabeebcd9fbe9e90fdb469769f2ca12386 (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
<!DOCTYPE html>
{#
# Copyright (c) 2016 Weitian LI <liweitianux@live.com>
# MIT license
#
# Tornado base template for the Web UI of "fg21sim"
#}
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="author" content="Weitian LI" />
<meta name="description" content="fg21sim: Realistic Foregrounds Simulation for EoR 21cm Signal Detection" />
<link rel="icon" type="image/png" href="{{ static_url('images/favicon.png') }}" />
<title>
{% block title %}
{% block subtitle %}{% end %} FG21sim Web UI
{% 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/fonts.css') }}" />
<link rel="stylesheet" href="{{ static_url('css/jquery.modal.css') }}" />
<link rel="stylesheet" href="{{ static_url('css/main.css') }}" />
{% block extra_css %}{% end %}
{% end %}
{% block head_script %}{% end %}
</head>
<body>
<div class="page">
{% block page %}
<header class="masthead" role="banner">
{% block header %}
{% include "header.html" %}
{% end %}
</header>
<main class="container" role="main">
{% block main %}{% end %}
</main>
<footer class="footer" role="contentinfo">
{% block footer %}
{% include "footer.html" %}
{% end %}
</footer>
{% end %} {# block page #}
</div>
{% block script %}
<script src="{{ static_url('js/jquery.js') }}"></script>
<script src="{{ static_url('js/jquery.modal.js') }}"></script>
<script src="{{ static_url('js/main.js') }}"></script>
{% block extra_script %}{% end %}
{% end %}
</body>
</html>
|