templates/base.html.twig line 1
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %}Welcome!{% endblock %}</title>
<link rel="icon"
href="{{ asset('images/favicon.ico') }}">
{# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
{% block stylesheets %}
{{ encore_entry_link_tags('app') }}
{% endblock %}
<link rel="stylesheet" href="{{ asset('owl/assets/owl.carousel.min.css') }}">
<link rel="stylesheet" href="{{ asset('owl/assets/owl.theme.default.min.css') }}">
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.css"/>
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
{% endblock %}
<script src="https://kit.fontawesome.com/1d304dc292.js" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.6.4/dist/jquery.min.js"></script>
<script src="{{ asset('owl/owl.carousel.min.js') }}" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.js"></script>
</head>
<body>
<div class="space-y-8 overflow-auto">
<div>
{{ include('frontend/layout/_header.html.twig') }}
</div>
{% block body %}
{% endblock %}
{{ include('frontend/layout/_footer.html.twig') }}
</div>
</body>
</html>