0_0_1
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user