From e152d2f2d1e257b1ec51adb3640e350207fda77d Mon Sep 17 00:00:00 2001 From: bnewbold Date: Wed, 11 Jul 2007 05:35:39 -0400 Subject: skeletal start, basic recovery of lost progress --- templates/base.html | 28 +++++++++++++ templates/flatpages/default.html | 6 +++ templates/go.html | 90 ++++++++++++++++++++++++++++++++++++++++ 3 files changed, 124 insertions(+) create mode 100644 templates/base.html create mode 100644 templates/flatpages/default.html create mode 100644 templates/go.html (limited to 'templates') diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..c2e023b --- /dev/null +++ b/templates/base.html @@ -0,0 +1,28 @@ + + +{% block style %} + +{% endblock %} +{% block javascript %} +{% endblock %} +The Equator + +
+
+

{% block title %}The Equator% endblock %}

+
+{% block content %} +no content? +{% endblock %} +
+
+ +home - +do it - +equations - +variables - +symbols +
Legalese? Copyright? Fuck no! +email the webmaster! 2007! +
+
diff --git a/templates/flatpages/default.html b/templates/flatpages/default.html new file mode 100644 index 0000000..55baf71 --- /dev/null +++ b/templates/flatpages/default.html @@ -0,0 +1,6 @@ +{% extends "base.html" %} + +{% block title %}{{ flatpage.title }}{% endblock %} +{% block content %} +{{ flatpage.content }} +{% endblock %} diff --git a/templates/go.html b/templates/go.html new file mode 100644 index 0000000..cb1e855 --- /dev/null +++ b/templates/go.html @@ -0,0 +1,90 @@ +{% extends "base.html" %} + +{% block javascript %} + + +{% endblock %} + +{% block title %}YAY!{% endblock %} +{% block content %} +Variables: +
+(none yet!) +
+
+Matching Equations: +
+(none yet, choose some variables!) +
+ +Status: +
+(nothing...)
+
+ +{% endblock %} -- cgit v1.2.3