first commit

This commit is contained in:
2022-11-20 21:46:36 +00:00
commit e3f445cd0d
54 changed files with 10801 additions and 0 deletions

46
templates/base.html.twig Normal file
View 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>