From python CGI to jekyll stuff
This commit is contained in:
26
_layouts/main.html
Normal file
26
_layouts/main.html
Normal file
@@ -0,0 +1,26 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<title>3DUI - {{ page.title }}</title>
|
||||
<meta charset='utf-8' />
|
||||
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Ubuntu:400,700,400italic" />
|
||||
<link rel="stylesheet" href="/static/css/style.css" />
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1 id="title">Welcome !</h1>
|
||||
</header>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="/">Index</a></li>
|
||||
<li><a href="/bouncing/">Bouncing cube</a></li>
|
||||
<li><a href="/multisphere/">Multi-sphere</a></li>
|
||||
<li><a href="/prototype/">Prototype</a></li>
|
||||
<li><a href="/stream/">Streaming simulator</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
{{ content }}
|
||||
{{ page.extrajs }}
|
||||
</body>
|
||||
</html>
|
||||
|
||||
23
_layouts/withjs.html
Normal file
23
_layouts/withjs.html
Normal file
@@ -0,0 +1,23 @@
|
||||
---
|
||||
layout: main
|
||||
---
|
||||
{{ content }}
|
||||
|
||||
<script src="/static/js/three.js"></script>
|
||||
<script src="/static/js/Tools.js"></script>
|
||||
<script src="/static/js/three/stats.min.js"></script>
|
||||
<script src="/static/js/three/DDSLoader.js"></script>
|
||||
<script src="/static/js/three/MTLLoader.js"></script>
|
||||
<script src="/static/js/three/OBJLoader.js"></script>
|
||||
<script src="/static/js/three/OBJMTLLoader.js"></script>
|
||||
<script src="/static/js/three/OrbitControls.js"></script>
|
||||
<script src="/static/js/Cube.js"></script>
|
||||
<script src="/static/js/ProgressiveSphere.js"></script>
|
||||
<script src="/static/js/Camera.js"></script>
|
||||
<script src="/static/js/FixedCamera.js"></script>
|
||||
<script src="/static/js/BouncingCube.js"></script>
|
||||
<script src="/static/js/BufferGeometryToGeometry.js"></script>
|
||||
<script src="/static/js/PointerCamera.js"></script>
|
||||
<script src="/static/js/CameraContainer.js"></script>
|
||||
<script src="/static/js/Hermite.js"></script>
|
||||
<script>static_path="/static/"</script>
|
||||
Reference in New Issue
Block a user