mirror of
				https://github.com/Wonderfall/hugo-WonderMod.git
				synced 2025-10-31 11:45:26 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			450 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			450 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{ template "theme/chrome/head.html" . }}
 | |
| <body>
 | |
| 
 | |
| {{ template "theme/chrome/sidebar.html" . }}
 | |
| 
 | |
|     <div class="content container">
 | |
| <div class="posts">
 | |
| 
 | |
|       {{ range .Data.Pages }}
 | |
|   <div class="post">
 | |
|     <h1 class="post-title">
 | |
|       <a href="{{ .Permalink }}">
 | |
|         {{ .Title }}
 | |
|       </a>
 | |
|     </h1>
 | |
| 
 | |
|     <span class="post-date">{{ .Date.Format "Mon, Jan 2, 2006" }}</span>
 | |
| 
 | |
|     {{ .Content }}
 | |
|   </div>
 | |
|   {{ end }}
 | |
| </div>
 | |
| 
 | |
| 
 | |
|   </body>
 | |
| </html>
 | 
