mirror of
				https://github.com/bestnite/bilinovel-downloader.git
				synced 2025-10-31 10:50:35 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			556 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			556 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| package template
 | |
| 
 | |
| templ ContentXHTML(title, content string) {
 | |
| 	@templ.Raw(`<?xml version='1.0' encoding='utf-8'?>`)
 | |
| 	// @templ.Raw(`<!DOCTYPE html>`)
 | |
| 	<html xmlns="http://www.w3.org/1999/xhtml" xmlns:epub="http://www.idpf.org/2007/ops" xml:lang="zh-CN">
 | |
| 		<head>
 | |
| 			<title>{ title }</title>
 | |
| 			@templ.Raw(`<link href="../../style.css" rel="stylesheet" type="text/css"/>`)
 | |
| 		</head>
 | |
| 		<body>
 | |
| 			<div class="chapter">
 | |
| 				<h1>{ title }</h1>
 | |
| 				@templ.Raw(`<hr/>`)
 | |
| 				<div class="content">
 | |
| 					@templ.Raw(content)
 | |
| 				</div>
 | |
| 			</div>
 | |
| 		</body>
 | |
| 	</html>
 | |
| }
 |