forked from laurens/fediversity_website
		
	
		
			
				
	
	
		
			47 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ define "main" }}
 | 
						|
  {{ $text := .Content }}
 | 
						|
  {{ with (index .Site.Data.personen (substr $.File.LogicalName 0 -3)) }}
 | 
						|
    {{ $personid := .id }}
 | 
						|
    {{ if .thumbnail }}<img src="{{ .thumbnail }}" alt="Foto van {{ .name }}">{{ end }}
 | 
						|
    {{ $text }}
 | 
						|
 | 
						|
 | 
						|
    {{ if .speaker }}
 | 
						|
      <h2>Presentaties</h2>
 | 
						|
      <ul>
 | 
						|
      {{ range where $.Site.RegularPages "Section" "evenementen" }}
 | 
						|
          {{ if .Params.speakers }}
 | 
						|
            {{ if in .Params.speakers $personid }}
 | 
						|
            <li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
 | 
						|
            {{ end }}
 | 
						|
          {{ end }}
 | 
						|
      {{ end }}
 | 
						|
      </ul>
 | 
						|
    {{ end }}
 | 
						|
    {{ if or (.email) (.websites) }}
 | 
						|
      <h2>Contact</h2>
 | 
						|
      <ul>
 | 
						|
      {{ if .email }}<li>E-mail: {{ .email }}</li>{{ end }}
 | 
						|
      {{ if .websites }}
 | 
						|
          {{ range .websites }}
 | 
						|
            <li><a href="{{ .url }}" rel="nofollow noopener">{{ .name }}</a></li>
 | 
						|
            {{ end }}
 | 
						|
      {{ end }}
 | 
						|
      </ul>
 | 
						|
    {{ end }}
 | 
						|
 | 
						|
    {{ if or (.social.mastodon) (.social.twitter) }}
 | 
						|
      <h2>Social media</h2>
 | 
						|
 | 
						|
      <ul class="list">
 | 
						|
      {{ if .social.mastodon }}
 | 
						|
        <li><img src="/afbeeldingen/iconen/mastodon.svg" height="{{ $.Site.Params.smallIconSize }}" width="{{ $.Site.Params.smallIconSize }}" alt="Mastodon"> <a href="{{ .social.mastodon_url }}">{{ .social.mastodon }}</a></li>
 | 
						|
      {{ end }}
 | 
						|
      {{ if .social.twitter }}
 | 
						|
        <li><img src="/afbeeldingen/iconen/twitter.svg" height="{{ $.Site.Params.smallIconSize }}" width="{{ $.Site.Params.smallIconSize }}" alt="Twitter"> <a href="https://twitter.com/{{ .social.twitter }}">{{ .social.twitter }}</a></li>
 | 
						|
      {{ end }}
 | 
						|
      </ul>
 | 
						|
    {{ end }}
 | 
						|
 | 
						|
  {{ end }}
 | 
						|
{{ end }}
 |