3d-interface/_layouts/main.html

31 lines
948 B
HTML
Raw Normal View History

2015-04-23 17:49:59 +02:00
<!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" />
2015-04-24 15:21:07 +02:00
<link rel="stylesheet" href="/static/css/syntax.css" />
2015-04-23 17:49:59 +02:00
</head>
2015-04-12 21:13:41 +02:00
<body>
<header>
2015-04-23 17:49:59 +02:00
<h1 id="title">Welcome !</h1>
2015-04-12 21:13:41 +02:00
</header>
2015-04-11 17:08:43 +02:00
<nav>
<ul>
<li><a href="/">Index</a></li>
<li><a href="/bouncing/">Bouncing cube</a></li>
<li><a href="/multisphere/">Multi-sphere</a></li>
2015-04-12 21:13:41 +02:00
<li><a href="/prototype/">Prototype</a></li>
2015-04-11 17:08:43 +02:00
<li><a href="/stream/">Streaming simulator</a></li>
</ul>
</nav>
2015-04-24 09:23:02 +02:00
<section>
{{ content }}
<section>
2015-04-24 10:32:32 +02:00
{{ page.js }}
2015-04-23 17:49:59 +02:00
{{ page.extrajs }}
2015-04-12 21:13:41 +02:00
</body>
2015-04-23 17:49:59 +02:00
</html>