15 lines
		
	
	
	
		
			318 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			318 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{ define "main" }}
 | |
|   <main class="container" aria-role="main">
 | |
|     <header class="header">
 | |
|       <h1>{{ .Title }}</h1>
 | |
|       {{- with .Params.subtitle }}
 | |
|       <span class="subtitle">{{ . }}</span>
 | |
|       {{- end }}
 | |
|     </header>
 | |
| 
 | |
|     <section class="content">
 | |
|       {{ .Content }}
 | |
|     </section>
 | |
| 
 | |
|   </main>
 | |
| {{ end }}
 |