You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			27 lines
		
	
	
		
			975 B
		
	
	
	
		
			HTML
		
	
			
		
		
	
	
			27 lines
		
	
	
		
			975 B
		
	
	
	
		
			HTML
		
	
| {{ partial "header.html" . }}
 | |
| {{ partial "navbar.html" . }}
 | |
| <main id="main" class="main event">
 | |
| <div class="container">
 | |
| 	<div class="row">
 | |
| 		<div class="section-header col-lg-12 content text-center">
 | |
| 			<h1 class="section-title">{{ .Title }}</h1>
 | |
| 			<h2 class="section-description">
 | |
| 			{{ $eventdates := .Param "eventdates" }}
 | |
| 			{{ if $eventdates.till }}
 | |
| 				From {{ (time $eventdates.from).Format "Monday, January 2, 2006" }} till {{ (time $eventdates.till).Format "Monday, January 2, 2006" }}
 | |
| 			{{ else }}
 | |
| 				{{ (time $eventdates.from).Format "Monday, January 2, 2006" }}
 | |
| 			{{ end }}</h2>
 | |
| 			<h2>{{ .Param "eventplace" }}</h2>
 | |
| 			{{ if .Param "callforpresentation" }}
 | |
| 				<h3><a href="{{ .Param "callforpresentation" }}"> <i class="fa-solid fa-person-chalkboard"></i> Call-for-Presentation</a></h3>
 | |
| 			{{ end }}
 | |
| 		</div>
 | |
| 	</div>
 | |
| 	<div class="row">
 | |
| 		<div class="col-lg-12 content">{{ .Content }}</div>
 | |
| 	</div>
 | |
| </section>
 | |
| </main>
 | |
| {{ partial "footer.html" . }}
 |