first commit
This commit is contained in:
46
templates/base.html.twig
Normal file
46
templates/base.html.twig
Normal file
@@ -0,0 +1,46 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"/>
|
||||
|
||||
<title>
|
||||
{% block title %}{% endblock %}
|
||||
</title>
|
||||
{{ vite_entry_link_tags('app') }}
|
||||
|
||||
</head>
|
||||
|
||||
|
||||
<!-- ANCHOR Body -->
|
||||
<body>
|
||||
{% block body %}
|
||||
|
||||
{# {% block navigation %}
|
||||
<div class="my_navigation">{% include 'navigation.html.twig' %}</div>
|
||||
{% endblock %} #}
|
||||
|
||||
{% block breadcrumbs %}
|
||||
<div class="my_breadcrumbs">{% include 'breadcrumbs.html.twig' %}</div>
|
||||
{% endblock %}
|
||||
|
||||
<div class="my_container">
|
||||
{% block gallery %}{% endblock %}
|
||||
{% block album %}{% endblock %}
|
||||
{% block details %}{% endblock %}
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
||||
|
||||
{# {% block pagination %}
|
||||
<div class="my_pagination">{% include 'pagination.html.twig' %}</div>
|
||||
{% endblock %} #}
|
||||
|
||||
<!-- ANCHOR JS -->
|
||||
<script src="https://kit.fontawesome.com/ea07098c7f.js" crossorigin="anonymous"></script>
|
||||
|
||||
|
||||
{{ vite_entry_script_tags('app') }}
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user