generated from alecodes/base-template
30 lines
812 B
HTML
30 lines
812 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta content="width=device-width, initial-scale=1.0" name="viewport">
|
|
<meta content="dark light" name="color-scheme">
|
|
<!-- if development -->
|
|
{% if is_production == false %}
|
|
<script src="{{ asset('/@vite/client') }}" type="module"></script>
|
|
{% endif %}
|
|
<link href="{{ asset('assets/css/style.scss') }}" rel="stylesheet"/>
|
|
<script src="{{ asset('assets/js/index.ts') }}" type="module"></script>
|
|
<title>
|
|
{% block title %}Axum web service!{% endblock %}
|
|
</title>
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
{% include "partials/header.html" ignore missing %}
|
|
</header>
|
|
<main>
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
<footer>
|
|
{% include "partials/footer.html" ignore missing %}
|
|
</footer>
|
|
</body>
|
|
|
|
</html>
|