templates/base.html.twig line 1
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}HYPA{% endblock %}</title>
<link rel="icon" href="{{ asset("images/logo_hypa.png") }}">
<link rel="stylesheet" href="{{ asset("css/reset.css") }}">
<link rel="stylesheet" href="{{ asset("css/default/style.css") }}">
{# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
{% block stylesheets %}
<style>
@font-face {
font-family: "KaiTi";
font-style: normal;
font-weight: 400;
src: url({{ asset('police/KaiTi.ttf') }}) format("truetype");
}
@font-face {
font-family: "hanmufa";
font-style: normal;
font-weight: 400;
src: url({{ asset('police/hanmufa.ttf') }}) format("truetype");
}
</style>
{% endblock %}
{% block javascripts %}
{% endblock %}
</head>
<body>
{% block header %}{% endblock %}
{% block body %}{% endblock %}
{% block footer %}{% endblock %}
</body>
</html>