diff options
author | Aaron LI <aaronly.me@outlook.com> | 2016-11-01 15:59:50 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2016-11-01 15:59:50 +0800 |
commit | 06cd1295fd4035fc01dde2212fe403de7545857b (patch) | |
tree | 50e268fa7123aa872ac7cb24c8d6cf6897390f10 /fg21sim/webui/templates/index.html | |
parent | 9bf32d1c5f522cdc205f1d9d9b98d92bd7b45011 (diff) | |
download | fg21sim-06cd1295fd4035fc01dde2212fe403de7545857b.tar.bz2 |
webui: Add the index and configs templates
Diffstat (limited to 'fg21sim/webui/templates/index.html')
-rw-r--r-- | fg21sim/webui/templates/index.html | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/fg21sim/webui/templates/index.html b/fg21sim/webui/templates/index.html new file mode 100644 index 0000000..2d5091e --- /dev/null +++ b/fg21sim/webui/templates/index.html @@ -0,0 +1,38 @@ +{# + # 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" %} + + <section id="xxx-results" class="container target"> + <h2 id="results">Results</h2> + <p>Simulation results go here :)</p> + </section> + + <section id="logs" class="container target"> + <h2>Logs</h2> + <p>Logging messages should go here :)</p> + </section> +{% end %} + +{% block footer %} + {% include "footer.html" %} +{% end %} |