diff options
author | Jayaram R Pai | 2014-09-09 20:13:03 +0530 |
---|---|---|
committer | Jayaram R Pai | 2014-09-09 20:13:03 +0530 |
commit | bd7345a7f9fe0818071133c6ce752a163a60b9e8 (patch) | |
tree | 3bf3cbdddfe55b7ef7b390a236711f2c98c27162 /static/website/templates | |
parent | 87abcafdc82e35b211a40bca96c609093eaa1c84 (diff) | |
download | scilab-on-cloud-bd7345a7f9fe0818071133c6ce752a163a60b9e8.tar.gz scilab-on-cloud-bd7345a7f9fe0818071133c6ce752a163a60b9e8.tar.bz2 scilab-on-cloud-bd7345a7f9fe0818071133c6ce752a163a60b9e8.zip |
made node/data functional
Diffstat (limited to 'static/website/templates')
-rw-r--r-- | static/website/templates/index.html | 6 | ||||
-rw-r--r-- | static/website/templates/node-about.html | 9 | ||||
-rw-r--r-- | static/website/templates/node-contact.html | 9 | ||||
-rw-r--r-- | static/website/templates/node-invitation.html | 8 |
4 files changed, 29 insertions, 3 deletions
diff --git a/static/website/templates/index.html b/static/website/templates/index.html index ee58a95..cb99367 100644 --- a/static/website/templates/index.html +++ b/static/website/templates/index.html @@ -20,9 +20,9 @@ </span> <div id="navlinks"> <ul> - <li><a href="#">About</a></li> - <li><a href="#">Invitation</a></li> - <li><a href="#">Contact Us</a></li> + <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> diff --git a/static/website/templates/node-about.html b/static/website/templates/node-about.html new file mode 100644 index 0000000..eff52c9 --- /dev/null +++ b/static/website/templates/node-about.html @@ -0,0 +1,9 @@ +<h6><u>About Scilab on GARUDA Cloud.</u></h6> +<p> + Scilab on Cloud facilitates execution of the codes for particular example(s) + online. The results can then be verified with the solved example(s) from the + textbook. It is also possible to change the values of the variables and in fact, + the code itself, and execute it. In addition to the given examples, one can also + copy and paste (or) write a new code in the input box provided and execute the + same. <a href="http://scilab.in/scilab-on-cloud" target="_blank">Read more..</a> +</p> diff --git a/static/website/templates/node-contact.html b/static/website/templates/node-contact.html new file mode 100644 index 0000000..a938b25 --- /dev/null +++ b/static/website/templates/node-contact.html @@ -0,0 +1,9 @@ +<h6><u>Send us your valuable suggestions and feedback that shall enable us to enhance our work.</u></h6> +<p> + If you wish to contribute to our activities such as <b>Lab Migration, Textbook + Companion, SciLinks, Scilab on Cloud, Scilab on Aakash,</b> please write to + <a href="mailto: contact@scilab.in">contact@scilab.in</a>. + For feedback on Lab Migration (or) Textbook Companion, + <a href="http://scilab.in/feedbacks">click here</a>. +</p> + diff --git a/static/website/templates/node-invitation.html b/static/website/templates/node-invitation.html new file mode 100644 index 0000000..65ed8f5 --- /dev/null +++ b/static/website/templates/node-invitation.html @@ -0,0 +1,8 @@ +<h6><u>Contribute to Scilab Textbook Companion Project / Scilab on GARUDA Cloud.</u></h6> +<p> + The FOSSEE team has created a submission portal that allows the code for + each example to be uploaded individually. The Textbook Companion Project aims + to port solved examples from standard textbooks using an open source software + system, such as Scilab. + <a href="http://scilab.in/Textbook_Companion_Project" target="_blank">Read more..</a> +</p> |