This commit is contained in:
Vinejar
2025-03-30 03:51:35 +03:00
parent 9d4585f573
commit c634edd56d
3 changed files with 50 additions and 17 deletions

View File

@@ -5,16 +5,26 @@
<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/style.css' %}">
<script src="{% static 'js/script.js' %}" defer></script>
<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="container">
<h1>{{ manga.original_title }}</h1>
<!-- Основной контейнер для контента -->
<div class="content-wrapper">
<div class="chapter">
<ul style="display: block">
<li class="breadcrumb">
<a href="/manga/111">Каталог</a>
<span>-</span>
<a href="/manga/111">{{ manga.original_title }}</a>
</li>
</ul>
</div>
<!-- Бокс с изображением -->
<div class="image-box" id="imageBox">
<img id="mangaImage" src="" alt="Страница">
@@ -32,17 +42,20 @@
{% endfor %}
</div>
</div>
<!-- Выпадающий список страниц -->
<div class="page postload">
<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>
<!-- Выпадающий список страниц -->
<div class="page postload">
<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>