mirror of
				https://github.com/RicterZ/nhentai.git
				synced 2025-11-04 11:00:55 +01:00 
			
		
		
		
	* More modern and efficient code, particularily for the JS * Also the layout is better, with flexboxes and all * The CSS and JS have their own files * The sidebar has proper margins around the images * You can use A + D and the arrow keys to navigate images, like on nhentai * Images with a lot of width are properly sized * There is a page counter on the bottom left
		
			
				
	
	
		
			24 lines
		
	
	
		
			303 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			303 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html>
 | 
						|
<head>
 | 
						|
    <meta charset="UTF-8">
 | 
						|
    <title>{TITLE}</title>
 | 
						|
    <style>
 | 
						|
{STYLES}
 | 
						|
    </style>
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
 | 
						|
<nav id="list">
 | 
						|
{IMAGES}</nav>
 | 
						|
 | 
						|
<div id="image-container">
 | 
						|
    <span id="page-num"></span>
 | 
						|
    <div id="dest"></div>
 | 
						|
</div>
 | 
						|
 | 
						|
<script>
 | 
						|
{SCRIPTS}
 | 
						|
</script>
 | 
						|
</body>
 | 
						|
</html> |