aboutsummaryrefslogtreecommitdiffstats
path: root/webface
diff options
context:
space:
mode:
authorbnewbold <bnewbold@robocracy.org>2016-10-25 22:11:52 -0700
committerbnewbold <bnewbold@robocracy.org>2016-10-25 22:11:52 -0700
commitec630361e25e765285a03931dfae49a478917538 (patch)
treeac0d3cac4853fcba80162cfe9aa19571c091c01b /webface
parent537272c5a764dc97414a50e535039232506fe174 (diff)
downloadmodelthing-ec630361e25e765285a03931dfae49a478917538.tar.gz
modelthing-ec630361e25e765285a03931dfae49a478917538.zip
add webface skeleton
Diffstat (limited to 'webface')
-rw-r--r--webface/static/style.css1
-rw-r--r--webface/templates/home.html12
-rw-r--r--webface/templates/model_view.html12
3 files changed, 25 insertions, 0 deletions
diff --git a/webface/static/style.css b/webface/static/style.css
new file mode 100644
index 0000000..2997587
--- /dev/null
+++ b/webface/static/style.css
@@ -0,0 +1 @@
+/* dummy */
diff --git a/webface/templates/home.html b/webface/templates/home.html
new file mode 100644
index 0000000..4d351df
--- /dev/null
+++ b/webface/templates/home.html
@@ -0,0 +1,12 @@
+<!DOCTYPE html>
+<html>
+<head>
+<meta charset="UTF-8">
+<title>modelthing</title>
+</head>
+
+<body>
+<a href="/about/">about</a>
+</body>
+
+</html>
diff --git a/webface/templates/model_view.html b/webface/templates/model_view.html
new file mode 100644
index 0000000..f3744a7
--- /dev/null
+++ b/webface/templates/model_view.html
@@ -0,0 +1,12 @@
+<!DOCTYPE html>
+<html>
+<head>
+<meta charset="UTF-8">
+<title>modelthing</title>
+</head>
+
+<body>
+{{model_id}}
+</body>
+
+</html>