forked from laurens/fediversity_website
		
	
		
			
				
	
	
		
			53 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!doctype html>
 | 
						|
<html{{ with site.LanguageCode | default site.Language.Lang }} lang="{{ . }}"{{ end }}>
 | 
						|
  {{ partial "head.html" . }}
 | 
						|
  <body>
 | 
						|
    <!-- Accessibility: skip-link voor mobiele apparaten -->
 | 
						|
    <a class="skip-link" href="#main">Ga naar hoofd</a>
 | 
						|
      <main id="main">
 | 
						|
        <div class="content">
 | 
						|
          {{ partialCached "header.html" . }}
 | 
						|
          {{ partial "breadcrumb.html" . }}
 | 
						|
            <!-- <h2 class="post">{{ .Title }}</h2> -->
 | 
						|
            {{- block "main" . }}
 | 
						|
                {{ .Content }}
 | 
						|
            {{- end }}
 | 
						|
 | 
						|
            {{ partial "show-call-to-action.html" . }}
 | 
						|
 | 
						|
            {{ if isset .Params "show_child_pages" }}
 | 
						|
              {{ if eq .Params.show_child_pages true }}
 | 
						|
                <section>
 | 
						|
                  <h3>Gerelateerde pagina's</h3>
 | 
						|
                  <ul>
 | 
						|
                    {{ range .Pages }}
 | 
						|
                      <li>
 | 
						|
                        <a class="link" href="{{ .Permalink }}" title="{{ .Title }}">{{ .Title | default .Site.Params.textNoTitle }}</a>
 | 
						|
                      </li>
 | 
						|
                      {{ end }}
 | 
						|
                  </ul>
 | 
						|
                </section>
 | 
						|
              {{ end }}
 | 
						|
            {{ end }}
 | 
						|
 | 
						|
            {{ if eq .Section "posts" }}
 | 
						|
          <section>
 | 
						|
            <h3>Tags</h3>
 | 
						|
              <div class="post-date">
 | 
						|
                <span class="g time">{{.Date.Format "January 2, 2006"}} </span> ∙
 | 
						|
                {{ $taxonomy := "tags" }} {{ with .Param $taxonomy }}
 | 
						|
                {{ range $index, $tag := . }} {{ with $.Site.GetPage (printf "/%s/%s" $taxonomy $tag) -}}
 | 
						|
                  <a href="{{ .Permalink }}">{{ $tag | urlize }}</a>
 | 
						|
                {{- end -}} {{- end -}}
 | 
						|
                {{ end }}
 | 
						|
              </div>
 | 
						|
          </section>
 | 
						|
              {{ end }}
 | 
						|
 | 
						|
        </div>
 | 
						|
      </main>
 | 
						|
      {{ partial "footer.html" . }}
 | 
						|
  </body>
 | 
						|
  {{ partialCached "scripts_loadlast.html" . }}
 | 
						|
 | 
						|
</html>
 |