17 lines
		
	
	
		
			395 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			395 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{ partial "head-blog.html" . }}
 | |
| {{ partial "navbar.html" . }}
 | |
| {{ partial "header.html" . }}
 | |
| 	<div class="content">
 | |
| 		<h1>{{ .Title }}</h1>
 | |
| 		{{ with .Resources.Match "book_*.png" }}
 | |
| 			{{ range $index, $val := . }}
 | |
| 			<p><a href="https://syui.booth.pm/items/4938622"><img src="{{ .RelPermalink }}"></a></p>
 | |
| 			{{ end }}
 | |
| 		{{ end }}
 | |
| 
 | |
| 	</div>
 | |
| </div>
 | |
| {{ partial "footer.html" . }}
 | |
| </body>
 | |
| </html>
 |