From 06cd1295fd4035fc01dde2212fe403de7545857b Mon Sep 17 00:00:00 2001 From: Aaron LI Date: Tue, 1 Nov 2016 15:59:50 +0800 Subject: webui: Add the index and configs templates --- fg21sim/webui/templates/index.html | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 fg21sim/webui/templates/index.html (limited to 'fg21sim/webui/templates/index.html') 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 + # MIT license + # + # Index page for the Web UI of "fg21sim" + #} + +{% extends "base.html" %} + +{% block title %}fg21sim Web UI{% end %} + +{% block extra_head %} + + + +{% end %} + +{% block header %} + {% include "header.html" %} +{% end %} + +{% block main %} + {% include "configs.html" %} + +
+

Results

+

Simulation results go here :)

+
+ +
+

Logs

+

Logging messages should go here :)

+
+{% end %} + +{% block footer %} + {% include "footer.html" %} +{% end %} -- cgit v1.2.2