-
Notifications
You must be signed in to change notification settings - Fork 1
/
mangapg.html
419 lines (379 loc) · 23 KB
/
mangapg.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
<!DOCTYPE html>
<html lang="en">
<head>
<title>Hell's Paradise: Jigokuraku Side Story: Forest of Misfortune Manga Online</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="robots" content="index,follow"/>
<meta http-equiv="content-language" content="en"/>
<meta name="description" content="Enjoy this special side story to celebrate the launch of the Hell's Paradise anime series! The children of a small village try to take down the stranger who's started living nearby, but he won't die no matter what they do to him!"/>
<meta name="keywords" content="Hell's Paradise: Jigokuraku Side Story: Forest of Misfortune info, Hell's Paradise: Jigokuraku Side Story: Forest of Misfortune manga, Hell's Paradise: Jigokuraku Side Story: Forest of Misfortune download, Hell's Paradise: Jigokuraku Side Story: Forest of Misfortune read"/>
<meta property="og:type" content="website"/>
<meta property="og:url" content="https://mangareader.to/hells-paradise-jigokuraku-side-story-forest-of-misfortune-65603"/>
<meta property="og:title" content="Hell's Paradise: Jigokuraku Side Story: Forest of Misfortune Manga Online"/>
<meta property="og:image" content="https://mangareader.to/images/share.png"/>
<meta property="og:image:width" content="650">
<meta property="og:image:height" content="350">
<meta property="og:description" content="Enjoy this special side story to celebrate the launch of the Hell's Paradise anime series! The children of a small village try to take down the stranger who's started living nearby, but he won't die no matter what they do to him!"/>
<meta name="p:domain_verify" content="af0275499319c533df212167fc646dfb"/>
<link rel="shortcut icon" href="/favicon.ico?v=0.1"/>
<link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon.png">
<link rel="manifest" href="/manifest.json">
<link rel="mask-icon" href="/images/safari-pinned-tab.svg" color="#5f25a6">
<meta name="msapplication-TileColor" content="#5f25a6">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css">
<link rel="stylesheet" href="mangapg.css">
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-207641274-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-207641274-1');
</script>
<script type="text/javascript" src="//services.vlitag.com/adv1/?q=591701d038949ac7ff56b261301cad42" defer=""
async=""></script>
<script> var vitag = vitag || {};</script>
</head>
<body>
</style>
</head>
<body>
<div class="clearfix"></div>
<script>
var uiMode = localStorage.getItem('uiMode');
const body = document.body, btnMode = document.getElementById('toggle-mode'),
sbBtnMode = document.getElementById('sb-toggle-mode');
function activeUiMode() {
if (uiMode === 'dark') {
btnMode && btnMode.classList.add('active');
sbBtnMode && sbBtnMode.classList.add('active');
body.classList.add("darkmode");
} else {
btnMode && btnMode.classList.remove('active');
sbBtnMode && sbBtnMode.classList.remove('active');
body.classList.remove("darkmode");
}
}
if (uiMode) {
activeUiMode();
} else {
window.matchMedia('(prefers-color-scheme: dark)').matches ? uiMode = 'dark' : uiMode = 'light';
activeUiMode();
}
[btnMode, sbBtnMode].forEach(item => {
if (item) {
item.addEventListener('click', function () {
this.classList.contains('active') ? uiMode = 'light' : uiMode = 'dark';
localStorage.setItem('uiMode', uiMode);
activeUiMode();
});
}
})
</script>
<header>
<a href="#" class="logo"> <i class="fas fa-book"></i> Manga </a>
<nav class="navbar">
<a href="globe2.html" target="_blank">Home</a>
<a class="active" href="#home" target="_blank">Manga</a>
<a href="dots.html" target="_blank">Anime</a>
<a href="globe.html" target="_blank">Movies</a><!--Under Construction-->
<a href="globe.html">Liked</a><!--Under Construction-->
</nav>
</header>
<section class="home" id="home">
<div class="home-slider">
<div class="wrapper">
<div class="slide">
<!-- <div class="box" style="background-image:url('https://images.wallpapersden.com/image/download/monkey-d-luffy-manga_bGlsZ26UmZqaraWkpJRnamtlrWZpaWU.jpg') no repeat;">
</div> -->
</div>
</div>
</div>
</div>
</section>
<!-- <div id="tfheader">
<form id="tfnewsearch" method="get" action="http://www.google.com">
<input type="text" class="tftextinput" name="q" size="21" maxlength="120" placeholder="search manga" style="text-align: center;"><input type="submit" value="search" class="tfbutton">
</form>
<div class="tfclear"></div>
</div> -->
<!--Begin: Detail-->
<div id="ani_detail">
<div class="ani_detail-stage">
<div class="container">
<div class="detail-breadcrumb">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="/home">Home</a></li>
<li class="breadcrumb-item active">Hell's Paradise: Jigokuraku Side Story: Forest of Misfortune</li>
</ol>
</nav>
</div>
<div class="anis-content">
<div class="anisc-poster">
<div class="manga-poster">
<img src="https://img.mreadercdn.com/_m/300x400/100/e5/71/e571c1c6ef70913b3ca7296a2d794314/e571c1c6ef70913b3ca7296a2d794314.jpg" class="manga-poster-img"
alt="Hell's Paradise: Jigokuraku Side Story: Forest of Misfortune">
</div>
</div>
<div class="anisc-detail">
<h2 class="manga-name">Hell's Paradise: Jigokuraku Side Story: Forest of Misfortune</h2>
<div class="manga-name-or"></div>
<div id="mal-sync"></div>
<div class="manga-buttons">
<a href="/read/hells-paradise-jigokuraku-side-story-forest-of-misfortune-65603"
class="btn btn-primary btn-play smoothlink"><i
class="fas fa-eye mr-2"></i>Read Now</a>
<div class="dr-fav" id="reading-list-info"></div>
</div>
<div class="sort-desc">
<div class="genres">
<a href="/genre/drama">Drama</a>
<a href="/genre/historical">Historical</a>
<a href="/genre/shounen">Shounen</a>
</div>
<div class="description">
Enjoy this special side story to celebrate the launch of the Hell's Paradise anime series! The children of a small village try to take down the stranger who's started living nearby, but he won't die no matter what they do to him!
</div>
<div class="description-more">
<button type="button" data-toggle="modal" data-target="#modaldesc"
class="btn btn-xs text-white">+ Read full
</button>
</div>
<div class="anisc-info-wrap">
<div class="anisc-info">
<div class="item item-title">
<span class="item-head">Type:</span>
<a class="name"
href="/type/one-shot">One-shot</a>
</div>
<div class="item item-title">
<span class="item-head">Status:</span>
<span class="name">Finished</span>
</div>
<div class="item item-title">
<span class="item-head">Magazines:</span>
<a href="/magazine/shounen-jump-18">Shounen Jump+</a>
</div>
<div class="item item-title">
<span class="item-head">Published:</span>
<span class="name">Apr 8, 2023 to ?</span>
</div>
<div class="item item-title">
<span class="item-head">Score:</span>
<span class="name">N/A</span>
</div>
<div class="item item-title">
<span class="item-head">Views:</span>
<span class="name">879</span>
</div>
<div class="detail-toggle">
<button type="button" class="btn btn-sm btn-light"><i
class="fas fa-angle-down mr-2"></i></button>
</div>
<div class="dt-rate" id="vote-info"></div>
</div>
<div class="clearfix"></div>
</div>
</div>
<div class="social-in-box">
<div class="addthis_inline_share_toolbox"></div>
</div>
<div class="clearfix"></div>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
</div>
<!--/End: Detail-->
<!--Begin: Main-->
<div id="main-wrapper" class="page-layout page-detail">
<div class="container">
<div id="mw-2col">
<!--Begin: main-content-->
<div id="main-content">
<section id="chapters-list" class="block_area block_area_category block_area_chapters">
<div class="block_area-header mb-0">
<div class="bah-heading bah-heading-tabs">
<ul class="nav nav-tabs chap-tabs">
<li class="nav-item"><a data-toggle="tab" href="#list-chapter"
class="nav-link active show">List Chapter</a></li>
</ul>
</div>
<div class="clearfix"></div>
</div>
<div class="tab-content">
<div id="list-chapter" class="tab-pane active show">
<div class="chapter-section">
<div class="chapter-s-lang">
<button type="button" data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false"
class="btn btn-sm"><i class="far fa-file-alt mr-2"></i><span
id="c-selected-lang"></span></button>
<div class="dropdown-menu dropdown-menu-model" aria-labelledby="ssc-list">
<a class="dropdown-item c-select-lang lang-item" href="javascript:;"
data-type="chap"
data-code="en">[EN
] English
(1 chapters)</a>
</div>
</div>
<div class="chapter-s-search">
<form class="preform search-reading-item-form">
<div class="css-icon"><i class="fas fa-search"></i></div>
<input class="form-control search-reading-item" type="text"
placeholder="Number of Chapter" autofocus>
</form>
</div>
<div class="clearfix"></div>
</div>
<div class="chapters-list-ul">
<ul class="ulclear reading-list lang-chapters" id="en-chapters"
style="display:none;">
<li class="item reading-item chapter-item"
data-number="1">
<a href="/read/hells-paradise-jigokuraku-side-story-forest-of-misfortune-65603/en/chapter-1"
class="item-link" title="Chapter 1: Side Story Forest of Misfortune">
<span class="arrow mr-2"><i class="far fa-file-alt"></i></span>
<span class="name">Chapter 1: Side Story Forest of Misfortune</span>
<span class="item-read"><i
class="fas fa-glasses mr-1"></i> Read</span>
</a>
<div class="clearfix"></div>
</li>
</ul>
</div>
<div class="clearfix"></div>
</div>
</div>
</section>
<div class="clearfix"></div>
</div>
</div>
<div class="modal fade premodal" id="modaldesc" tabindex="-1" role="dialog" aria-labelledby="modalldesctitle"
aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="modalldesctitle">Hell's Paradise: Jigokuraku Side Story: Forest of Misfortune</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="description-modal">
Enjoy this special side story to celebrate the launch of the Hell's Paradise anime series! The children of a small village try to take down the stranger who's started living nearby, but he won't die no matter what they do to him!
</div>
</div>
</div>
</div>
</div>
<div class="modal fade premodal premodal-characters" id="modalcharacters" tabindex="-1" role="dialog"
aria-labelledby="modallchartitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="modallchartitle">Characters</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body" id="characters-content"></div>
</div>
</div>
</div>
<div class="modal fade premodal premodal-login" id="modal-auth">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="tab-content">
<!--Begin: tab login-->
<div id="modal-tab-login" class="tab-pane active">
<div class="modal-header">
<h5 class="modal-title" id="modallogintitle">Welcome back!</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="alert alert-danger" id="login-error" style="display: none;"></div>
<form class="preform" id="login-form" method="post">
<div class="form-group">
<label class="prelabel" for="email">Email address</label>
<input type="text" class="form-control" id="email" placeholder="name@email.com"
name="email" required>
</div>
<div class="form-group">
<label class="prelabel" for="password">Password</label>
<input type="password" class="form-control" id="password" placeholder="Password"
name="password" required>
</div>
<div class="form-check custom-control custom-checkbox">
<div class="float-left">
<input type="checkbox" class="custom-control-input" id="remember" name="remember"
value="1">
<label class="custom-control-label" for="remember">Remember me</label>
</div>
<div class="float-right">
<a href="javascript:;" class="link-highlight text-forgot forgot-tab-link">Forgot
password?</a>
</div>
<div class="clearfix"></div>
</div>
<div class="form-group login-btn mt-4 mb-2">
<button class="btn btn-primary btn-block">Sign-in</button>
<div class="loading-relative" id="login-loading" style="display: none;">
<div class="loading">
<div class="span1"></div>
<div class="span2"></div>
<div class="span3"></div>
</div>
</div>
</div>
</form>
</div>
<div class="modal-footer text-center">
Don't have an account? <a class="link-highlight register-tab-link">Register</a>
</div>
</div>
<!--End: tab login-->
<!--Begin: tab forgot-->
<div id="modal-tab-forgot" class="tab-pane fade">
<div class="modal-header">
<h5 class="modal-title" id="modallogintitle3">Reset Password</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<form class="preform" method="post" id="forgot-form">
<div class="alert alert-success mb-3" id="forgot-success" style="display:none"></div>
<div class="alert alert-danger mb-3" id="forgot-error" style="display:none"></div>
<div class="form-group">
<label class="prelabel" for="forgot-email">Your Email</label>
<input type="text" class="form-control" id="forgot-email" name="email"
placeholder="name@email.com" required>
</div>
<div class="g-recaptcha mb-3" id="forgot-recaptcha" data-theme="dark"></div>
<div class="form-group login-btn mt-4">
<button class="btn btn-primary btn-block">Submit</button>
<div class="loading-relative" id="forgot-loading" style="display: none;">
<div class="loading">
<div class="span1"></div>
<div class="span2"></div>
<div class="span3"></div>
</div>
</div>
</div>
</form>
</div>
<div class="modal-footer text-center">
<a class="link-highlight login-tab-link"><i class="fa fa-angle-left mr-2"></i>Back to
Sign-in</a>
</div>
</div>
</script>
</body>
</html>