19 lines
		
	
	
		
			688 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			688 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{ define "main" }}
 | |
|     <interview class="single-default">
 | |
|       <header class="mb-8 wompum-container wompum-container--wide-gap aspect-3/1 md:aspect-4/1">
 | |
|         <div class="wompum-grid" data-text="{{ .Params.wompum | default .Title }}" data-columns="7" data-rows="5"></div>
 | |
|       </header>
 | |
| 
 | |
|       <div class="prose lg:prose-xl dark:prose-invert p-4 mx-auto mt-8">
 | |
|         <p class="font-bold text-6xl">{{ .Title }}</p>
 | |
|         {{ .Content }}
 | |
|         
 | |
|         {{/* Check for additional partials to include */}}
 | |
|         {{ with .Params.include_partials }}
 | |
|           {{ range . }}
 | |
|             {{ partial . $ }}
 | |
|           {{ end }}
 | |
|         {{ end }}
 | |
|       </div>
 | |
|     </interview>
 | |
| {{ end }} |