31 lines
1 KiB
HTML
31 lines
1 KiB
HTML
|
|
{% load static %}
|
||
|
|
{% load dajaxice_templatetags %}
|
||
|
|
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<title>3D Sample Viewer</title>
|
||
|
|
<link href="{% static "three_d_viewer/css/bootstrap.min.css" %}" rel="stylesheet" media="screen">
|
||
|
|
<script type="text/javascript" src="{% static "three_d_viewer/jquery-2.0.3.js" %}"></script>
|
||
|
|
<script type="text/javascript" srv="{% static "three_d_viewer/js/bootstrap.min.js" %}"></script>
|
||
|
|
</head>
|
||
|
|
|
||
|
|
<body onload="load();">
|
||
|
|
<div class="container">
|
||
|
|
<div class="page-header">
|
||
|
|
<h1>Three D Viewer</h1>
|
||
|
|
<p class="lead">Look at some rocks</p>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="row">
|
||
|
|
<div class="col-md-4">
|
||
|
|
<div class="row">
|
||
|
|
{% include "three_d_viewer/sampletree.html" %}
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div class="col-md-8">
|
||
|
|
<p>Put some intro text sort of stuff here</p?
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div
|
||
|
|
</body>
|
||
|
|
</html>
|