mirror of
https://github.com/getnamingo/registry.git
synced 2025-07-31 23:06:10 +02:00
30 lines
No EOL
1.1 KiB
Twig
30 lines
No EOL
1.1 KiB
Twig
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"/>
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge"/>
|
|
<title>{% block title %}{% endblock %} | Namingo</title>
|
|
<meta name="theme-color" content="#066fd1">
|
|
<!-- CSS files -->
|
|
{% include 'partials/css.twig' %}
|
|
<link href="/assets/css/sweetalert2.min.css" rel="stylesheet">
|
|
<style>
|
|
@import url('/assets/fonts/inter/inter.css');
|
|
:root {
|
|
--tblr-font-sans-serif: "Inter", -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif;
|
|
}
|
|
@supports (font-variation-settings: normal) {
|
|
:root {
|
|
--tblr-font-sans-serif: "InterVariable", -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif;
|
|
font-optical-sizing: auto;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body class="border-top-wide border-primary d-flex flex-column">
|
|
{% block content %}{% endblock %}
|
|
<!-- Libs JS -->
|
|
{% include 'partials/js.twig' %}
|
|
</body>
|
|
</html> |