summaryrefslogtreecommitdiff
path: root/website/templates/index.html
diff options
context:
space:
mode:
authorJayaram R Pai2014-09-15 14:39:01 +0530
committerJayaram R Pai2014-09-15 14:39:01 +0530
commit5f2e6accc9a0b790cccf1eba972123817ec7552a (patch)
treeb01ead8397b358d437dcdd3e1ef3b84163335a69 /website/templates/index.html
parent674e4c3dc687d9ae4c2db742e9bc9f1a9887b082 (diff)
downloadscilab-on-cloud-5f2e6accc9a0b790cccf1eba972123817ec7552a.tar.gz
scilab-on-cloud-5f2e6accc9a0b790cccf1eba972123817ec7552a.tar.bz2
scilab-on-cloud-5f2e6accc9a0b790cccf1eba972123817ec7552a.zip
added tornado server config file
Diffstat (limited to 'website/templates/index.html')
-rw-r--r--website/templates/index.html129
1 files changed, 129 insertions, 0 deletions
diff --git a/website/templates/index.html b/website/templates/index.html
new file mode 100644
index 0000000..88abbf8
--- /dev/null
+++ b/website/templates/index.html
@@ -0,0 +1,129 @@
+{% load static %}
+{% load dajaxice_templatetags %}
+<html>
+ <head>
+ <title>Scilab on Cloud</title>
+ <link href="{% static 'website/css/base.css' %}" rel="stylesheet"/>
+ <link href="{% static 'website/css/codemirror.css' %}" rel="stylesheet"/>
+ <link href="{% static 'website/css/fullscreen.css'%}" rel="stylesheet"/>
+ <link href="{% static 'website/css/monokai.css' %}" rel="stylesheet"/>
+ <link href="{% static 'website/css/main.css' %}" rel="stylesheet"/>
+ {% dajaxice_js_import %}
+ </head>
+ <body>
+ <div id="header-wrapper">
+ <div id="header-inner">
+ <div id="topbar">
+ <img id="home-logo" src="{% static 'website/images/home-logo.png' %}">
+ <span id="title">
+ Scilab on Cloud
+ </span>
+ <div id="navlinks">
+ <ul>
+ <li><a class="node" data-key="about" href="#">About</a></li>
+ <li><a class="node" data-key="invitation" href="#">Invitation</a></li>
+ <li><a class="node" data-key="contact" href="#">Contact Us</a></li>
+ <img id="scilab-logo" src="{% static 'website/images/scilab-logo.png'%}" width="100px">
+ </ul>
+ <div class="clearfix"></div>
+ </div> <!-- /#navlinks -->
+ </div> <!-- /#topbar -->
+ </div> <!-- /#header-inner -->
+ </div> <!-- /#header-wrapper -->
+ <div id="content-wrapper">
+ <div id="content-inner">
+ <div id="selectors">
+ <div id="category-wrapper">
+ <label>Category: </label>
+ <select id="categories">
+ <option value="">Select Category</option>
+ <option value="10">Analog Electronics</option>
+ <option value="3">Chemical Engineering</option>
+ <option value="12">Computer Programming</option>
+ <option value="2">Control Theory &amp; Control Systems</option>
+ <option value="7">Digital Communications</option>
+ <option value="11">Digital Electronics</option>
+ <option value="8">Electrical Technology</option>
+ <option value="1">Fluid Mechanics</option>
+ <option value="9">Mathematics &amp; Pure Science</option>
+ <option value="5">Mechanical Engineering</option>
+ <option value="6">Signal Processing</option>
+ <option value="4">Thermodynamics</option>
+ <option value="13">Others</option>
+ </select>
+ <a href="#" class="extra-link" id="contributor">+Contributor</a>
+ </div>
+ <div id="books-wrapper"></div>
+ <div id="chapters-wrapper"></div>
+ <div id="examples-wrapper"></div>
+ </div>
+ <div id="content">
+ <div id="input">
+ <label>
+ Scilab Code
+ <span id="controls">
+ <a href="#" id="toggle-code">
+ <img src="{% static 'website/images/icon-toggle.png'%}">
+ </a>
+ <a href="#" id="fullscreen-code">
+ <img src="{% static 'website/images/icon-fullscreen.png'%}">
+ </a>
+ </span> <!-- /#controls -->
+ </label>
+ <form>
+ <textarea id="code" placeholder="Write a new code or select existing from above category..."></textarea>
+ </form>
+ </div><!-- /#input -->
+ <a id="execute" class="button"><span id="execute-inner">Execute</span></a>
+
+ <div id="output">
+ <label>
+ Result
+ <span id="controls">
+ <a href="#" id="toggle-result">
+ <img src="{% static 'website/images/icon-toggle.png'%}">
+ </a>
+ <a href="#" id="fullscreen-result">
+ <img src="{% static 'website/images/icon-fullscreen.png'%}">
+ </a>
+ </span> <!-- /#controls -->
+ </label>
+ <textarea id="result"></textarea>
+ </div> <!-- /#output -->
+ <a id="bug" class="button">Report bug / Give Feedback</a>
+
+ <div id="credits">
+ <small>
+ Disclaimer: Scilab is a trademark of Inria
+ (registered at the INPI for France and the rest of the World)
+ and Scilab Enterprises is granted exclusive rights for
+ Scilab Trademark.
+ </small>
+ Copyright IIT Bombay
+ </div> <!-- /#credits -->
+ </div> <!-- /#content -->
+ </div> <!-- /#content-inner -->
+ </div> <!-- /#content-wrapper -->
+
+ <div id="plotbox-wrapper">
+ <div id="plotbox"></div>
+ </div> <!-- /#plotbox-wrapper -->
+
+ <div id="databox-wrapper">
+ <div id="databox"></div>
+ </div> <!-- /#databox-wrapper -->
+
+ <div id="bug-form-wrapper">
+ </div> <!-- /#databox-wrapper -->
+
+ <script src="{% static 'website/js/jquery-1.10.2.min.js' %}"></script>
+ <script src="{% static '/static/dajax/jquery.dajax.core.js' %}"></script>
+ <script src="{% static 'website/js/codemirror.js'%}"></script>
+ <script src="{% static 'website/js/javascript.js'%}"></script>
+ <script src="{% static 'website/js/fullscreen.js'%}"></script>
+ <script src="{% static 'website/js/placeholder.js'%}"></script>
+ <script src="{% static 'website/js/lightbox_me.js'%}"></script>
+ <script src="{% static 'website/js/cloud.js'%}"></script>
+ {% csrf_token %}
+ </body>
+</html>