Listing 19.13. Widok app/Resources/views/base.html.twig
<!DOCTYPE html>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title>{% block title %}Tatry{% endblock %}</title>
        <link rel="stylesheet" href="{{ asset('css/style.css') }}" />
    </head>
    <body>
        {% block body %}{% endblock %}
    </body>
</html>