mirror of
https://github.com/getnamingo/registry.git
synced 2025-07-01 08:33:22 +02:00
22 lines
No EOL
773 B
Twig
22 lines
No EOL
773 B
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>
|
|
<!-- CSS files -->
|
|
{% include 'partials/css.twig' %}
|
|
<style>
|
|
@import url('https://rsms.me/inter/inter.css');
|
|
:root {
|
|
--tblr-font-sans-serif: Inter, -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body class="border-top-wide border-primary d-flex flex-column">
|
|
{% block content %}{% endblock %}
|
|
<!-- Libs JS -->
|
|
{% include 'partials/js.twig' %}
|
|
</body>
|
|
</html> |