aboutsummaryrefslogtreecommitdiffstats
path: root/fg21sim/webui/templates/index.html
blob: b23c1b8eb53fec86c932325045873db5f8745bb0 (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
{#
 # Copyright (c) 2016 Weitian LI <liweitianux@live.com>
 # MIT license
 #
 # Index page for the Web UI of "fg21sim"
 #}

{% extends "base.html" %}

{% block title %}fg21sim Web UI{% end %}

{% block extra_head %}
  <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') }}" />
{% end %}

{% block header %}
  {% include "header.html" %}
{% end %}

{% block main %}
  {% include "configs.html" %}
  {% include "console.html" %}
  {% include "results.html" %}
{% end %}

{% block footer %}
  {% include "footer.html" %}
{% end %}

{% block extra_script %}
  <script src="{{ static_url('js/configs.js') }}"></script>
  <script src="{{ static_url('js/console.js') }}"></script>
  <script src="{{ static_url('js/websocket.js') }}"></script>
{% end %}