-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
748 lines (549 loc) · 24.4 KB
/
index.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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<base href="https://neco2.github.io" target="_blank">
<link rel="apple-touch-icon" href="/assets/favicon.png">
<link rel="icon" type="image/png" href="/assets/favicon.png">
<link rel="shortcut icon" type="image/png" href="/assets/favicon.png">
<!-- <link rel="stylesheet" href="/assets/css/zCssMerge.css"> -->
<link rel="stylesheet" href="/assets/css/styles.css">
<link rel="stylesheet" href="/assets/css/wrapper.css">
<link rel="stylesheet" href="/assets/css/series.css">
<!-- <link rel="stylesheet" href="/assets/css/seriesPage.css"> -->
<link rel="stylesheet" href="/assets/css/links.css">
<style>
.spoiler {
color:#FFFFFF00;
background:black;
}
.spoiler:hover {
color:inherit;
background:black;
}
</style>
<script>
function zeroPad(number) {
let [integer, decimal] = number.split('.');
integer = integer.padStart(3, '0');
if (decimal) {
return `${integer}.${decimal}`;
}
return integer;
}
async function downloadURL(uri, short, chapter, dlLink) {
const ext = uri.match(/\.[^\.\/]+$/);
console.log(short)
if (!ext) {
return
}
var name = ""
try {
chapterMatch = chapter.match(/\d+(\.\d+)?/)
name = short + zeroPad(chapterMatch[0])
}
catch {
name = short + "_" + chapter
}
event.preventDefault();
console.log("Downloading " + uri + " as " + name)
const oldInnerHTML = dlLink.innerHTML;
dlLink.innerHTML = oldInnerHTML + " <span style='font-size:65%'>(Connecting)</span>";
const response = await fetch(uri);
const contentLength = response.headers.get('content-length');
const total = parseInt(contentLength, 10);
let loaded = 0;
const res = new Response(new ReadableStream({
async start(controller) {
const reader = response.body.getReader();
for (;;) {
const {done, value} = await reader.read();
if (done) break;
loaded += value.byteLength;
dlLink.innerHTML = oldInnerHTML + " <span style='font-size:65%'>(" + (loaded/1000000).toFixed(2) + "/" + (total/1000000).toFixed(2) +"mb)</span>";
controller.enqueue(value);
}
controller.close();
},
}));
const blob = await res.blob();
const href = window.URL.createObjectURL(blob);
const a = document.createElement("a");
a.download = name + ext;
a.target="_blank"
a.href = href;
a.click();
a.href = "";
dlLink.innerHTML = oldInnerHTML;
}
</script>
<title>Home - neCo</title>
</head>
<!--
░█▀█░█▀▄░█▀█░█▀█░█▀▄░█▀█░█▀█░░░█▀█░█░░░█░░░░░█░█░█▀█░█▀█░█▀▀░░░░░░░█░█░█▀▀░░░█░█░█░█░█▀█░░░█▀▀░█▀█░▀█▀░█▀▀░█▀▄░░░█░█░█▀▀░█▀▄░█▀▀░
░█▀█░█▀▄░█▀█░█░█░█░█░█░█░█░█░░░█▀█░█░░░█░░░░░█▀█░█░█░█▀▀░█▀▀░░░░░░░░█░░█▀▀░░░█▄█░█▀█░█░█░░░█▀▀░█░█░░█░░█▀▀░█▀▄░░░█▀█░█▀▀░█▀▄░█▀▀░
░▀░▀░▀▀░░▀░▀░▀░▀░▀▀░░▀▀▀░▀░▀░░░▀░▀░▀▀▀░▀▀▀░░░▀░▀░▀▀▀░▀░░░▀▀▀░▄▀░░░░░▀░░▀▀▀░░░▀░▀░▀░▀░▀▀▀░░░▀▀▀░▀░▀░░▀░░▀▀▀░▀░▀░░░▀░▀░▀▀▀░▀░▀░▀▀▀░
-->
<body>
<div id="fakeBody">
<header id="header">
<div class="headerPos">
<nav>
<div class="headerImg">
<a target="_self" href="https://neco2.github.io" style="position: relative;">
<img src="assets/neco.svg" alt="" height=65px>
</a>
</div>
<a target="_self" href="https://neco2.github.io">
<div class="headerButton">
Home
</div>
</a>
<a target="_self" href="translations">
<div class="headerButton">
TLs
</div>
</a>
<!-- <a target="_self" href="chapters/">
<div class="headerButton">
Chapters
</div>
</a> -->
<a target="_self" href="blog/">
<div class="headerButton">
Blog
</div>
</a>
<a target="_self" href="resources/">
<div class="headerButton">
Resources
</div>
</a>
<!-- <input type="checkbox" id="colourSwitch" /> -->
</nav>
</div>
</header>
<div class="refreshBanner ver4 Aver2024-11-08-15-57">
<div>
If you are seeing this, please refresh the page without cache.<br>
(ctrl+shift+r usually)
</div>
</div>
<div id="contentContainer">
<div class="series_list">
<!-- <div id="series_container"> -->
<div class="series_card">
<a title="Chapter updates and important announcements regarding this manga (delays etc)." class="nonStyled series_card_rssPopup" target="_self" href="/feeds/rss-Shinyuu no Musume ni Semarare Komatteimasu.xml">
<img src="/assets/links/rss.png" style="height:25px;margin-top:3px;">
</a>
<a target="_self" class="plainLink" href="translations/Shinyuu no Musume ni Semarare Komatteimasu">
<div class="series_card_container">
<div class="series_card_top">
<img class="series_card_img" src="/assets/covers/thumbnail/sms.jpg" alt="" height=250px>
<div class="onImg_bl">
<div class="onImgStatus">
[Series]<br>
<table class="statusTable" cellpadding="0" cellspacing="0">
<tr>
<td>Publication</td>
<td>: </td>
<td>Completed</td>
</tr>
<tr>
<td>Translation</td>
<td>: </td>
<td>Ongoing (Omake)</td>
</tr>
</table>
</div>
</div>
</div>
</div>
<div style="text-align:center;" class="series_card_bot">
<span class="maintitle styledLink">Shinyuu no Musume ni Semarare Komatteimasu</span><br>
<span class="subtitle">Mimoto Koyori</span>
</div>
</a>
</div>
<div class="series_card">
<a title="Chapter updates and important announcements regarding this manga (delays etc)." class="nonStyled series_card_rssPopup" target="_self" href="/feeds/rss-Ningyou no Asa.xml">
<img src="/assets/links/rss.png" style="height:25px;margin-top:3px;">
</a>
<a target="_self" class="plainLink" href="translations/Ningyou no Asa">
<div class="series_card_container">
<div class="series_card_top">
<img class="series_card_img" src="/assets/covers/thumbnail/nna.jpg" alt="" height=250px>
<div class="onImg_bl">
<div class="onImgStatus">
[Series]<br>
<table class="statusTable" cellpadding="0" cellspacing="0">
<tr>
<td>Publication</td>
<td>: </td>
<td>Hiatus</td>
</tr>
<tr>
<td>Translation</td>
<td>: </td>
<td>Completed</td>
</tr>
</table>
</div>
</div>
</div>
</div>
<div style="text-align:center;" class="series_card_bot">
<span class="maintitle styledLink">Ningyou no Asa</span><br>
<span class="subtitle">Mokuzai Sekizai</span>
</div>
</a>
</div>
<div class="series_card">
<a title="Chapter updates and important announcements regarding this manga (delays etc)." class="nonStyled series_card_rssPopup" target="_self" href="/feeds/rss-Mangaka-sensei to Zashiki Warashi.xml">
<img src="/assets/links/rss.png" style="height:25px;margin-top:3px;">
</a>
<a target="_self" class="plainLink" href="translations/Mangaka-sensei to Zashiki Warashi">
<div class="series_card_container">
<div class="series_card_top">
<img class="series_card_img" src="/assets/covers/thumbnail/zw.jpg" alt="" height=250px>
<div class="onImg_bl">
<div class="onImgStatus">
[Series]<br>
<table class="statusTable" cellpadding="0" cellspacing="0">
<tr>
<td>Publication</td>
<td>: </td>
<td>Completed</td>
</tr>
<tr>
<td>Translation</td>
<td>: </td>
<td>Completed</td>
</tr>
</table>
</div>
</div>
</div>
</div>
<div style="text-align:center;" class="series_card_bot">
<span class="maintitle styledLink">Mangaka-sensei to Zashiki Warashi</span><br>
<span class="subtitle">Nukku</span>
</div>
</a>
</div>
<div class="series_card">
<a target="_self" class="plainLink" href="translations/">
<div class="series_card_container">
<div class="series_card_top" style="background:#0008;">
<!-- <img class="series_card_img" src="/assets/covers/thumbnail/" alt="" height=250px> -->
<div style="text-align:center;">
<div style="position:relative;margin:auto;margin-top:calc(50% - 0.15em);width:1.2em;font-size:500%;font-weight:bold;">+</div>
</div>
</div>
</div>
<div style="text-align:center;" class="series_card_bot">
<span class="maintitle styledLink">View All</span><br>
<span class="subtitle"> </span>
</div>
</a>
</div>
<!-- </div> -->
</div>
<div style="text-align:center;margin:auto;padding:10px;">
Stuff I translate goes here.<br>
Thanks to <a target="_self" href="https://stalker-scans.blogspot.com/">STALKER</a>
for various translation help.
</div>
<div id="announcements">
<style media="screen">
#announcements {
display: flex;
margin-top: 1em;
margin-left: auto;
margin-right: auto;
width: fit-content;
max-width: 90%;
background: #ff00000c;
padding: 10px;
font-weight: bold;
font-size: 120%;
animation-name: flash;
animation-duration: 2.5s;
}
@keyframes flash {
0% { outline: red solid 3px; outline-offset: 1em; }
20% { background: #ff00003a; }
30% { background: #ff00003a; }
50% { outline-offset: 0em; }
100% { background: parent; outline-offset: 0em; }
}
#infoTable {
float: right;
max-width: calc(100% - 1.5em);
}
#infoTable tr {
vertical-align: middle;
}
.infoSymbol {
font-size: 135%;
color: var(--page-text);
border: 2px solid var(--page-text);
border-radius: 50%;
text-align: center;
width: 1em;
height: 1em;
vertical-align: center;
display: inline-block;
line-height: 1em;
vertical-align: middle;
margin-top: auto;
margin-bottom: auto;
}
</style>
<div title="Information" class="infoSymbol" style="margin-right:.5em;">i</div>
<table id="infoTable" style="vertical-align:top;display:inline-table;" cellpadding="0" cellspacing="0">
<tr>
<td>2024-11-06 | </td>
<td><a target="_self" href="/blog/Shinmusu-Delayed">Shinmusu Chapter 9 Delay</a></td>
</tr>
</table>
</div>
<div id="feeds" class="truncateBottom">
<div id="colLeft" class="feed feed_updates">
<h2>Recent Chapters <span class="subtitle"><a target="_self" href="feeds/rss-chapters.xml">[Feed]</a> <a target="_self" href="chapters/">[show all]</a></span></span></h2>
<div class="ChapterUpdate">
<h3>
<span style="font-size:10px">2024-10-27 22:16:02 +0000</span><br>
<!-- -->
<span class="">
<!-- <a href="https://files.catbox.moe/36yztg.zip">Shinyuu no Musume ni Semarare Komatteimasu - Volume 1, Omake</a> -->
<a target="_self" class="dl_link" href="https://files.catbox.moe/36yztg.zip"
_download_="Shinyuu_no_Musume_ni_Semarare_Komatteimasu
Volume 1,
Omake"
onClick="javascript:downloadURL('https://files.catbox.moe/36yztg.zip','SMS','Omake',this);">
Shinyuu no Musume ni Semarare Komatteimasu - <span class="nobreak">Volume 1,</span> <span class="nobreak">Omake</span>
</a>
<div class="hash">
Added: 2024-10-27 22:16:02 +0000
</div>
</span>
</h3>
<hr>
</div>
<div class="ChapterUpdate">
<h3>
<span style="font-size:10px">2024-10-27 22:15:06 +0000</span><br>
<!-- -->
<span class="">
<!-- <a href="https://files.catbox.moe/36ntbp.zip">Shinyuu no Musume ni Semarare Komatteimasu - Volume 1, Chapter 8</a> -->
<a target="_self" class="dl_link" href="https://files.catbox.moe/36ntbp.zip"
_download_="Shinyuu_no_Musume_ni_Semarare_Komatteimasu
Volume 1,
Chapter 8"
onClick="javascript:downloadURL('https://files.catbox.moe/36ntbp.zip','SMS','Chapter 8',this);">
Shinyuu no Musume ni Semarare Komatteimasu - <span class="nobreak">Volume 1,</span> <span class="nobreak">Chapter 8</span>
</a>
<div class="hash">
Added: 2024-10-27 22:15:06 +0000
</div>
</span>
</h3>
<hr>
</div>
<div class="ChapterUpdate">
<h3>
<span style="font-size:10px">2024-10-14 11:17:45 +0000</span><br>
<!-- -->
<span class="">
<!-- <a href="https://files.catbox.moe/28u2m2.zip">Shinyuu no Musume ni Semarare Komatteimasu - Volume 1, Chapter 7</a> -->
<a target="_self" class="dl_link" href="https://files.catbox.moe/28u2m2.zip"
_download_="Shinyuu_no_Musume_ni_Semarare_Komatteimasu
Volume 1,
Chapter 7"
onClick="javascript:downloadURL('https://files.catbox.moe/28u2m2.zip','SMS','Chapter 7',this);">
Shinyuu no Musume ni Semarare Komatteimasu - <span class="nobreak">Volume 1,</span> <span class="nobreak">Chapter 7</span>
</a>
<div class="hash">
Added: 2024-10-14 11:17:45 +0000
</div>
</span>
</h3>
<hr>
</div>
<div class="ChapterUpdate">
<h3>
<span style="font-size:10px">2024-10-07 15:45:45 +0000</span><br>
<!-- -->
<span class="chapterUpdate-Revision">
<!-- <a href="https://files.catbox.moe/b84d82.zip">Shinyuu no Musume ni Semarare Komatteimasu - Volume 1, Chapter 1</a> -->
<a target="_self" class="dl_link" href="https://files.catbox.moe/b84d82.zip"
_download_="Shinyuu_no_Musume_ni_Semarare_Komatteimasu
Volume 1,
Chapter 1"
onClick="javascript:downloadURL('https://files.catbox.moe/b84d82.zip','SMS','Chapter 1',this);">
Shinyuu no Musume ni Semarare Komatteimasu - <span class="nobreak">Volume 1,</span> <span class="nobreak">Chapter 1</span>
</a>
<div class="hash">
Added: 2024-08-12 07:57:08 +0000
</div>
</span>
</h3>
<hr>
</div>
<div class="ChapterUpdate">
<h3>
<span style="font-size:10px">2024-09-30 05:29:36 +0000</span><br>
<!-- -->
<span class="">
<!-- <a href="https://files.catbox.moe/pwban6.zip">Shinyuu no Musume ni Semarare Komatteimasu - Volume 1, Chapter 6</a> -->
<a target="_self" class="dl_link" href="https://files.catbox.moe/pwban6.zip"
_download_="Shinyuu_no_Musume_ni_Semarare_Komatteimasu
Volume 1,
Chapter 6"
onClick="javascript:downloadURL('https://files.catbox.moe/pwban6.zip','SMS','Chapter 6',this);">
Shinyuu no Musume ni Semarare Komatteimasu - <span class="nobreak">Volume 1,</span> <span class="nobreak">Chapter 6</span>
</a>
<div class="hash">
Added: 2024-09-30 05:29:36 +0000
</div>
</span>
</h3>
<hr>
</div>
</div>
<div id="colRight" class="feed feed_blog">
<h2>Recent Blog Posts <span class="subtitle"><a target="_self" href="feeds/rss-blogs.xml">[Feed]</a> <a target="_self" href="blog/">[show all]</a></span></h2>
<div class="BlogPost">
<h3><span style="font-size:10px">2024-09-02 12:52:53 +0000</span><br>
<a target="_self" href="/blog/Update-to-Download-Links">Changed Download Links</a></h3>
<span class="truncate">I've switched all download links over to catbox. If anyone has set up auto downloads with the RSS feeds, this broke it.<br />
The feed might spam new entries too, but this will only happen once. I apologize for the inconvenience.
</span>
<hr>
</div>
<div class="BlogPost">
<h3><span style="font-size:10px">2024-03-24 06:11:10 +0000</span><br>
<a target="_self" href="/blog/Completed-Ningyou-no-Asa">Completed Ningyou no Asa</a></h3>
<span class="truncate">The story of Ningyou no Asa currently ends with the second volume at 10.5 chapters.
While it is never explicitly stated that the manga has been dropped, and chapter 10
even has the usual "To be continued", I belive it to be very unlikely that it's ever
going to be continued.<br>
But it looks like the author is still alive at least (see <a target="_self" href="/blog/Ningyou no Asa Author Still Alive">
previous post</a>). I'll try to keep up with him, and if he ever starts something
interesting again, or if he actually continues this manga, I'll make a post here.<br>
<br>
But this is it for now. Consider buying the <a target="_self" href="https://www.dlsite.com/comic/work/=/product_id/BJ152506.html">manga</a>, or the
<a target="_self" href="https://www.dlsite.com/home/circle/profile/=/maker_id/RG17989.html">
author's doujin works</a> on DLsite.<br>
<spoiler>Remember when I thought I could get this done in less than half a year?</spoiler>
</span>
<hr>
</div>
<div class="BlogPost">
<h3><span style="font-size:10px">2024-02-28 12:14:54 +0000</span><br>
<a target="_self" href="/blog/Ningyou-no-Asa-Author-not-Dead">Ningyou no Asa Author Still Alive</a></h3>
<span class="truncate">Looks like the author is still alive! Earlier this February, he added <a target="_self" href="https://www.dlsite.com/comic/work/=/product_id/BJ01214555.html">
a tankobon version of anata wa neko desu ka</a> to DLsite. <b>Buy it.</b> It's a
doujin series he previously worked on. It appears to just be a re-release
of the old chapters, and there's no news on NnA, but I'm just glad to know he's
still around.
</span>
<hr>
</div>
<div class="BlogPost">
<h3><span style="font-size:10px">2023-05-04 17:56:26 +0000</span><br>
<a target="_self" href="/blog/Picking-up-Ningyou-no-Asa">Picking up Ningyou no Asa</a></h3>
<span class="truncate">Would you a stray onaho?<br>
Expected release frequency: Fuck, I don't know. Life's going to be getting busy
soon. One chapter every month? Maybe more frequently? I don't know how much work
this is going to take yet. We'll see.<br>
Dumps: Saturday or Sunday around 5pm CET on /a/.
</span>
<hr>
</div>
<div class="BlogPost">
<h3><span style="font-size:10px">2023-04-02 06:48:10 +0000</span><br>
<a target="_self" href="/blog/Completed-Mangaka-sensei-to-Zashiki-Warashi">Completed Mangaka-sensei to Zashiki Warashi</a></h3>
<span class="truncate">Chapter 29 marks the end of this manga. I hope you enjoyed, and please consider supporting Nukku. All relevant links can be found on the manga’s page.<br>
I will translate the extra chapters, but I will not stick to a schedule. They’ll be done when they’re done. Please consider purchasing the extra chapters on booth.<br>
<br>
Some fun stats about the scanlation:
<ul>
<li>Including no-text pages (covers etc.), this manga was 624 pages long</li>
<li>The project source files total to about 2.7GB of data</li>
<li>Around 3600 speech balloons were translated, for an average of ~124 balloons per chapter</li>
</ul>
</span>
<hr>
</div>
<div class="BlogPost">
<h3><span style="font-size:10px">2023-02-01 13:00:39 +0000</span><br>
<a target="_self" href="/blog/neCo-is-currently-accepting-suggestions-for-a-new-scanlation-project">(Closed) neCo is currently accepting suggestions for a new scanlation project</a></h3>
<span class="truncate">With the translation Mangaka-sensei to Zashiki Warashi slowly coming to a close, I should decide on my next project soon. If you've got any suggestions,
<a target="_self" href="/suggestions">please click here for details</a>.
</span>
<hr>
</div>
<div class="BlogPost">
<h3><span style="font-size:10px">2022-02-12 08:40:40 +0000</span><br>
<a target="_self" href="/blog/Picking-up-Mangaka-sensei-to-Zashiki-Warashi">Picking up Mangaka-sensei to Zashiki Warashi</a></h3>
<span class="truncate">A cute <span class="spoiler">love</span> story of a scruffy mangaka and a
little zashiki warashi.<br>
Expected release frequency: One chapter per two weeks.<br>
Dumps: Saturday or Sunday around 5pm CET on /a/.
</span>
<hr>
</div>
<div class="BlogPost">
<h3><span style="font-size:10px">2022-02-07 10:34:36 +0000</span><br>
<a target="_self" href="/blog/About-this-blog">About this Blog</a></h3>
<span class="truncate">After anon in the scanlation thread
mentioned he was generating a static site from just one text file and
hosting it <a href="https://mycropen.github.io">on github</a>, I was intrigued
<span class="spoiler">mostly because the wiki I set up as an archive on fandom
kicked me out for inactivity</span> and tried to build something of my own.
He was generous enough to give me his code, which was a great help.<br>
This weird blog/wiki-ish hybrid thing was built using a combination of a lacking
understanding of html, python and <a href="https://jekyllrb.com/">Jekyll</a>,
a static site generator. Similarly to what anon made, this site is generated
from one central YAML data file containing information about the entries
I want displayed on the page, and a couple Jekyll templates.<br>
This is also the first time I've built a website, so if you want to keep your
sanity, I recommend you don't look at any of the html. It's an absolute mess.<br>
<br>
In conclusion, I put way too much work into a website that at most 2 people will
use per year. But it's my website, damn it!<br>
If you want to have a look at the inner workings, I'd be happy to share the source
with you. Just throw me a mail and I'll probably notice within a couple weeks.
</span>
<hr>
</div>
</div>
</div>
<br>
<div id="rssLink">
<a class="styledLink" target="_self" href="feeds/all.xml">RSS Feed [All Chapters & Blog]</a>
</div>
<br>
</div>
<noscript>
<div>
JavaScript is unfortunately required to download chapters with the correct file-names.
</div>
</noscript>
</div>
<footer id="footer">
<div class="footerContent">
<span style="font-size:18px;margin-left:50%;left:-137px;display:table;vertical-align:top;text-align:center;position:absolute;"> <a target="_self" href="support">HOW TO SUPPORT THE AUTHOR</a></span>
</div>
<span style="opacity:20%">
May your path lea<a class="nonStyled" target="_self" href="debug">d</a> you to the gardens of eternal spring.
<span style="font-size:8px;">2024-11-08 15:57</span>
</span>
<span style="float:right;opacity:20%">
<a target="_self" href="feeds">Feeds</a> - <a target="_self" href="contact">Contact</a>
</span>
</footer>
</body>
</html>