forked from laurens/fediversity_website
		
	
		
			
				
	
	
		
			38 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ define "main" }}
 | 
						|
 | 
						|
  {{ $.Scratch.Set "highlighted_events" slice }}
 | 
						|
 | 
						|
  {{ range .Pages }}
 | 
						|
    {{ if isset .Params "event_start" }}
 | 
						|
      {{ $event_start := .Params.event_start | time }}
 | 
						|
 | 
						|
      {{ if le now $event_start }}
 | 
						|
        {{ $.Scratch.Add "highlighted_events" . }}
 | 
						|
      {{ end }}
 | 
						|
    {{ end }}
 | 
						|
  {{ end }}
 | 
						|
 | 
						|
  {{ if (gt ($.Scratch.Get "highlighted_events" | len) 0) }}
 | 
						|
  <h2>Aankomende evenementen</h2>
 | 
						|
    <div class="three-column-grid">
 | 
						|
      {{ range $.Scratch.Get "highlighted_events" }}
 | 
						|
        {{ partial "show-highlighted-event.html" . }}
 | 
						|
      {{ end }}
 | 
						|
    </div>
 | 
						|
  {{ end }}
 | 
						|
 | 
						|
  <h2>Overzicht</h2>
 | 
						|
  <section>
 | 
						|
    <ul class="list">
 | 
						|
      {{ range .Pages.ByDate }}
 | 
						|
        <li>
 | 
						|
          <a class="link" href="{{ .Permalink }}" title="{{ .Title }}">{{ .Title }}</a>
 | 
						|
          <hr class="hr-list">
 | 
						|
          {{ if isset .Params "event_start" }}
 | 
						|
          <time class="g time" datetime="{{ dateFormat "02-01-2006" .Params.event_start }}">{{ dateFormat "02-01-2006" .Params.event_start }}</time>
 | 
						|
          {{ end }}
 | 
						|
        </li>
 | 
						|
        {{ end }}
 | 
						|
    </ul>
 | 
						|
  </section>
 | 
						|
{{ end }}
 |