All checks were successful
Auto-Deploy-Shop / deploy (push) Successful in 7s
генерации и переменной среды
36 lines
1.1 KiB
HTML
36 lines
1.1 KiB
HTML
<!-- templates/base.html -->
|
|
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{% block title %}Мой проект{% endblock %}</title>
|
|
<!-- Bootstrap CSS -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<style>
|
|
/* Uniform product image size */
|
|
.product-img {
|
|
width: 100%;
|
|
height: 200px;
|
|
object-fit: cover;
|
|
}
|
|
</style>
|
|
{% block extra_css %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
<!-- Навигационная панель -->
|
|
{% include 'components/navbar.html' %}
|
|
|
|
<!-- Основной контент -->
|
|
<main class="container mt-4">
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
|
|
<!-- Футер -->
|
|
{% include 'components/footer.html' %}
|
|
|
|
<!-- Bootstrap JS -->
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
|
|
{% block extra_js %}{% endblock %}
|
|
</body>
|
|
</html> |