29 lines
560 B
HTML
29 lines
560 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>The Study</title>
|
|
<link rel="stylesheet" href="/style.css">
|
|
<script type="importmap">
|
|
{
|
|
"imports": {
|
|
"three": "https://cdn.jsdelivr.net/npm/three@0.183.2/build/three.module.js",
|
|
"three/addons/": "https://cdn.jsdelivr.net/npm/three@0.183.2/examples/jsm/"
|
|
}
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<section class="section">
|
|
<div class="container">
|
|
{% block content %}
|
|
{% endblock content %}
|
|
</div>
|
|
</section>
|
|
</body>
|
|
|
|
|
|
</html>
|