forked from laurens/fediversity_website
		
	
		
			
				
	
	
		
			33 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ define "main" }}
 | 
						|
  {{ $icon_size := 20 }}
 | 
						|
  {{ $text := .Content }}
 | 
						|
  {{ with (index .Site.Data.personen (substr $.File.LogicalName 0 -4)) }}
 | 
						|
    {{ if .thumbnail }}<img src="{{ .thumbnail }}" alt="Foto van {{ .name }}">{{ end }}
 | 
						|
    {{ $text }}
 | 
						|
    <h3>Contact</h3>
 | 
						|
    <ul>
 | 
						|
    {{ if .email }}<li>E-mail: {{ .email }}</li>{{ end }}
 | 
						|
    {{ if .websites }}
 | 
						|
        {{ range .websites }}
 | 
						|
          <li><a href="{{ .url }}" rel="nofollow">{{ .name }}</a></li>
 | 
						|
          {{ end }}
 | 
						|
    {{ end }}
 | 
						|
    </ul>
 | 
						|
 | 
						|
    {{ if or
 | 
						|
      (.social.mastodon)
 | 
						|
      (.social.twitter)
 | 
						|
    }}
 | 
						|
      <h3>Social media</h3>
 | 
						|
      <ul class="list">
 | 
						|
      {{ if .social.mastodon }}
 | 
						|
      <li><a href="{{ .social.mastodon_url }}"><img src="/afbeeldingen/iconen/mastodon.svg" height="{{ $icon_size }}" width="{{ $icon_size }}" alt="Mastodon" /> {{ .social.mastodon }}</a></li>
 | 
						|
      {{ end }}
 | 
						|
      {{ if .social.twitter }}
 | 
						|
      <li><a href="https://twitter.com/{{ .social.twitter }}"><img src="/afbeeldingen/iconen/twitter.svg" height="{{ $icon_size }}" width="{{ $icon_size }}" alt="Twitter" /> {{ .social.twitter }}</a></li>
 | 
						|
      {{ end }}
 | 
						|
      </ul>
 | 
						|
    {{ end }}
 | 
						|
 | 
						|
  {{ end }}
 | 
						|
{{ end }}
 |