- [x] Update auf Static CMS v2.0 - [x] aktualisierte Shortcodes (schließt #225) - [x] aktualisierte Previews (schließt #181) - Ordnerunterstützung - [x] vervollständigte Seiten - [x] Aufräumarbeiten Reviewed-on: https://git.cantorgymnasium.de/gcg/gcg-website/pulls/226
		
			
				
	
	
		
			23 lines
		
	
	
		
			443 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			443 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{ define "main" }}
 | |
| 
 | |
| <section class="section-sm">
 | |
|   <div class="container">
 | |
|     <div class="row">
 | |
|       <div class="col-12 content">
 | |
|         {{ .Content }}
 | |
|       </div>
 | |
|     </div>
 | |
|   </div>
 | |
|   <div class="container">
 | |
|     <div class="row">
 | |
|       {{ range .Params.tiles }}
 | |
|       {{ partial "modal" . }}
 | |
|       <div class="col-lg-4 col-sm-6">
 | |
|         {{ partial "card-icon" . }}
 | |
|       </div>
 | |
|       {{ end }}
 | |
|     </div>
 | |
|   </div>
 | |
| </section>
 | |
| 
 | |
| {{ end }} |