diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/about.html | 32 | ||||
-rw-r--r-- | templates/base.html | 3 | ||||
-rw-r--r-- | templates/index.html | 40 |
3 files changed, 74 insertions, 1 deletions
diff --git a/templates/about.html b/templates/about.html new file mode 100644 index 0000000..3f59846 --- /dev/null +++ b/templates/about.html @@ -0,0 +1,32 @@ +{% extends "base.html" %} + +{% block title %}Equwha?{% endblock %} +{% block content %} +<p /> +This site is a junky hack of a tool to quickly explore equations of all kinds; +the main interface is designed to quickly look up physical equations and +formulae based on their constituant variables. +<p /> +This site runs on <a href="http://appspot.com">google app engine</a>; it uses +the python project <a href="http://djangoproject.com">django</a> and should +be using the javascript math package <a href="http://www.math.union.edu/~dpvc/jsMath/">jsMath</a>. +<p /> +The full source code is available at +<a href="http://git.bnewbold.net">git.bnewbold.net</a>. You can get all the +symbols and variables as json (poke around and you'll find it); i'd like to +offer full export in a bunch of formats as well as feeds for new/special +equations. + +<h2>Stuff that is out there</h2> +<ul> + <li /><a href="http://en.wikipedia.org/">wikipedia</a> + <li /><a href="http://hyperphysics.phy-astr.gsu.edu/hbase/HFrame.html">hyperphysics</a> + <li /><a href="http://planetmath.org/">Planet Math</a> + <li /><a href="http://www.sagemath.org/">Sage Math</a> + <li /><a href="http://en.wikipedia.org/wiki/Axiom_(computer_algebra_system)">AXIOM</a> + <li /><a href="http://mathworld.wolfram.com/">mathworld.wolfram.com</a> + <li /><a href="http://functions.wolfram.com/">functions.wolfram.com</a> + <li /><a href="http://www.aip.org/stixfonts/">stix fonts</a> + <li />much else... +</ul> +{% endblock %} diff --git a/templates/base.html b/templates/base.html index 82579c5..9d9c89c 100644 --- a/templates/base.html +++ b/templates/base.html @@ -18,11 +18,12 @@ no content? <hr> <span class="footer"> <a href="/">home</a> - +<a href="/about/">about</a> - <a href="/go/">do it</a> - <a href="/equation/">equations</a> - <a href="/variable/">variables</a> - <a href="/symbol/">symbols</a> <br>Legalese? Copyright? Fuck no! -<a href="mailto:webmaster@equator.memeschemes.com" style="text-decoration: line-through;">email the webmaster!</a> 2007! +<a href="mailto:webmaster@equator.memeschemes.com" style="text-decoration: line-through;">email the webmaster!</a> 2009! </span> </div></body></html> diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..0ff29f8 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,40 @@ +{% extends "base.html" %} + +{% block title %}The Equator is Primed{% endblock %} +{% block content %} +<div style="width: 300px; margin-left: 176px; border: 3px solid red; +padding: 5px; background-color: orange; font-size: 30px; text-align: center;"> +<a href="/go/" style="text-decoration:none;">GO</a></div> +<br /> +<h3>View all <a href="/equation/">equations</a>, +<a href="/variable/">variables</a>, or +<a href="/symbol/">symbols</a>.</h3> +<p /> +This site is a junky hack of a tool to quickly explore equations of all kinds; +the main interface is designed to quickly look up physical equations and +formulae based on their constituant variables. Click "GO" above to start. +<p /> +The site runs on <a href="http://appspot.com">google app engine</a>; it uses +the python project <a href="http://djangoproject.com">django</a> and should +be using the javascript math package <a href="http://www.math.union.edu/~dpvc/jsMath/">jsMath</a>. +<p /> +The full source code is available at +<a href="http://git.bnewbold.net">git.bnewbold.net</a>. You can get all the +symbols and variables as json (poke around and you'll find it); i'd like to +offer full export in a bunch of formats as well as feeds for new/special +equations. + +<h2>Stuff that is out there</h2> +<ul> + <li /><a href="http://en.wikipedia.org/">wikipedia</a> + <li /><a href="http://hyperphysics.phy-astr.gsu.edu/hbase/HFrame.html">hyperphysics</a> + <li /><a href="http://planetmath.org/">Planet Math</a> + <li /><a href="http://www.sagemath.org/">Sage Math</a> + <li /><a href="http://en.wikipedia.org/wiki/Axiom_(computer_algebra_system)">AXIOM</a> + <li /><a href="http://mathworld.wolfram.com/">mathworld.wolfram.com</a> + <li /><a href="http://functions.wolfram.com/">functions.wolfram.com</a> + <li /><a href="http://www.aip.org/stixfonts/">stix fonts</a> + <li />much else... +</ul> + +{% endblock %} |