rockviewer/three_d_viewer/templates/three_d_viewer/base.html

61 lines
2.5 KiB
HTML
Raw Normal View History

2013-09-14 21:26:54 +10:00
{% load static %}
{% load dajaxice_templatetags %}
<html>
2014-02-19 16:10:57 +10:00
<head>
<meta charset="UTF-8">
<title>3DVOL - 3D Virtual Object Library</title>
2014-02-22 13:38:18 +10:00
{% block includes %}
2014-02-19 16:10:57 +10:00
<link href="{% static "three_d_viewer/css/styles.css" %}" rel="stylesheet" media="screen" />
<script type="text/javascript" src="{% static "three_d_viewer/js/jquery.min.js" %}"></script>
2014-02-22 13:38:18 +10:00
<script type='text/javascript' src="{% static "three_d_viewer/js/menu_jquery.js" %}"></script>
{% endblock %}
2014-02-19 16:10:57 +10:00
</head>
2013-09-14 21:26:54 +10:00
2014-02-22 13:38:18 +10:00
<body onload={% block loadscript %}""{% endblock %}>
2014-02-19 16:10:57 +10:00
<div id="wrapper">
<div id="container">
<div id="header">
<div id="logo">
<p>3D VOL</p>
</div><!-- CLOSE LOGO !-->
<div id="menuContainer">
<div id='cssmenu'>
<ul>
2014-02-20 15:21:50 +10:00
<li class='active mainitem'><a href="{% url 'three_d_viewer:home' %}"><span>Home</span></a></li>
2014-02-19 16:10:57 +10:00
<li class='has-sub mainitem'><a href='#'><span>Minerals</span></a>
<ul>
2014-02-20 15:21:50 +10:00
<li class='has-sub'><a href="{% url 'three_d_viewer:minerals_theory' %}"><span>Theory</span></a>
2014-02-19 16:10:57 +10:00
<ul>
2014-02-20 15:21:50 +10:00
<li><a href="{% url 'three_d_viewer:minerals_theory' %}"><span>Structure of Earth</span></a></li>
<li><a href="{% url 'three_d_viewer:minerals_theory' %}"><span>Pressure and temperature</span></a></li>
<li class='last'><a href="{% url 'three_d_viewer:minerals_theory' %}"><span>Bowen's reaction series</span></a></li>
2014-02-19 16:10:57 +10:00
</ul>
</li>
2014-02-20 15:21:50 +10:00
<li><a href="{% url 'three_d_viewer:minerals_practice' %}"><span>Practice</span></a></li>
<li class='last'><a href="{% url 'three_d_viewer:minerals_selftest' %}"><span>Self Test</span></a></li>
2014-02-19 16:10:57 +10:00
</ul>
</li>
<li class="mainitem"><a href='#'><span>Rocks</span></a></li>
<li class='last mainitem'><a href='#'><span>Fossils</span></a></li>
</ul>
</div><!-- CLOSE CSSMENU !-->
</div><!-- CLOSE MENUCONTAINER !-->
</div><!-- HEADER !-->
<div id="content">
2014-02-20 15:21:50 +10:00
{% block content %}
{% endblock %}
2014-02-19 16:10:57 +10:00
</div><!-- CLOSE CONTENT !-->
</div><!-- CLOSE CONTAINER !-->
<div id="push"></div><!-- CLOSE PUSH !-->
</div><!-- CLOSE WRAPPER !-->
<div id="footer">
<ul>
<li><a href="#">Glossary</a></li>
<li>&nbsp; - &nbsp;</li>
<li><a href="#">Acknowledgements</a></li>
</ul>
</div><!-- CLOSE FOOTER !-->
2014-02-20 15:21:50 +10:00
</body>
</html>