mirror of
https://github.com/ToxicCrack/PrintABrick.git
synced 2025-05-28 01:30:11 -07:00
30 lines
1.5 KiB
Twig
30 lines
1.5 KiB
Twig
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
|
|
<meta name="description" content="{{ 'meta.description' | trans | striptags('sup') }}">
|
|
<title>{% block title %}{{ name }} - {{ 'meta.description' | trans | striptags('sup') }}{% endblock %}</title>
|
|
{% block stylesheets %}
|
|
<link rel="stylesheet" href="{{ fileTimestamp(asset('resources/css/main.css')) }}">
|
|
{% endblock %}
|
|
<link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}" />
|
|
<link rel="apple-touch-icon" sizes="180x180" href="{{ asset('apple-touch-icon.png') }}">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="{{ asset('favicon-32x32.png') }}">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="{{ asset('favicon-16x16.png') }}">
|
|
<link rel="manifest" href="{{ asset('manifest.json') }}">
|
|
<link rel="mask-icon" href="{{ asset('safari-pinned-tab.svg') }}" color="#5bbad5">
|
|
<meta name="theme-color" content="#ffffff">
|
|
</head>
|
|
<body class="default-theme body pushable">
|
|
{% block body %}
|
|
|
|
{% endblock %}
|
|
{% block javascripts %}
|
|
<script type="text/javascript" src="{{ fileTimestamp(asset('resources/js/three.js')) }}"></script>
|
|
<script type="text/javascript" src="{{ fileTimestamp(asset('resources/js/OrbitControls.js')) }}"></script>
|
|
<script src="{{ fileTimestamp(asset('resources/js/main.js')) }}"></script>
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|