LSBC/templates/base.html.twig

24 lines
805 B
Twig
Raw Normal View History

2023-05-05 21:48:32 +02:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
2023-05-11 17:03:52 +02:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}LSBC{% endblock %}</title>
2023-05-05 21:48:32 +02:00
{# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
{% block stylesheets %}
2023-05-11 17:03:52 +02:00
<style>
body { margin: 1em auto; max-width: 800px; width: 95%; font: 18px/1.5 sans-serif; }
img { max-width: 100%; }
.help-text { font-size: 0.8em; }
2023-05-11 17:03:52 +02:00
</style>
2023-05-05 21:48:32 +02:00
{{ encore_entry_link_tags('app') }}
{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
</body>
</html>