Files
hentai_manga_site/templates/manga_view.html

54 lines
2.0 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="ru">
<head>
{% load static %}
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ manga.original_title }}</title>
<link rel="stylesheet" type="text/css" href="{% static 'css/manga_view.css' %}">
<script src="{% static 'js/manga_view.js' %}" defer></script>
</head>
<body>
<div class="main-container">
<!-- Блок с навигацией -->
<div class="navigation-box">
<ul>
<li class="breadcrumb">
<a href="/manga/111">Каталог</a>
<span>-</span>
<a href="/manga/111">{{ manga.original_title }}</a>
</li>
</ul>
</div>
<!-- Блок с изображениями -->
<div class="image-container">
<div class="image-box" id="imageBox">
<img id="mangaImage" src="" alt="Страница">
</div>
<div class="manga-grid-container" id="previewContainer">
<div id="previewGrid" class="manga-grid">
{% for img in manga.imgs_manga %}
<div class="manga-preview">
<img src="{{ img }}"
onclick="showImage('{{ img }}')"
alt="Стр {{ forloop.counter }}">
</div>
{% endfor %}
</div>
</div>
</div>
<!-- Блок с выпадающим списком -->
<div class="dropdown-box">
<select id="drop" onchange="changePage(this)">
<option value="preview">🔍 Превью</option>
{% for img in manga.imgs_manga %}
<option value="{{ img }}">Стр {{ forloop.counter }}</option>
{% endfor %}
</select>
</div>
</div>
</body>
</html>