Layout
This page displays an example of Twig layout file layout.Twig
<!doctype html>
<html>
<head>
<link rel="shortcut icon" href="{{ asset_url ~ 'favicon.png' }}" type="image/x-icon">
<title>
{% block title %}{% endblock %}
</title>
...
</head>
<body>
{% block header %}{% endblock %}
{% block main_content %}{% endblock %}
{% block footer %}{% endblock %}
<script src="{{ asset_url ~ 'jquery-3.4.1.min.js' }}"></script>
<script src="{{ asset_url ~ 'bootstrap.js' }}"></script>
<script src="{{ asset_url ~ 'custom.js' }}"></script>
</body>
</html>
Last modified: 4 months ago