mirror of
https://github.com/ToxicCrack/PrintABrick.git
synced 2025-05-28 09:40:14 -07:00
26 lines
797 B
Twig
26 lines
797 B
Twig
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
|
|
<title>{% block title %}PrintABrick{% endblock %}</title>
|
|
{% block stylesheets %}
|
|
<link rel="stylesheet" href="{{ asset('resources/css/main.css') }}">
|
|
{% endblock %}
|
|
<link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}" />
|
|
</head>
|
|
<body class="default-theme">
|
|
{% block body %}
|
|
|
|
{% endblock %}
|
|
{% block javascripts %}
|
|
|
|
<script type="text/javascript" src="{{ asset('resources/js/three.js') }}"></script>
|
|
|
|
<script type="text/javascript" src="{{ asset('resources/js/OrbitControls.js') }}"></script>
|
|
|
|
<script src="{{ asset('resources/js/main.js') }}"></script>
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|