forked from laurens/fediversity_website
		
	
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			739 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			739 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ if .IsHome -}}
 | 
						|
 | 
						|
  {{ partial "schemas/schema_Organization.html" . }}
 | 
						|
  {{ partial "schemas/schema_WebSite.html" . }}
 | 
						|
  {{ partial "schemas/schema_WebPage.html" . }}
 | 
						|
 | 
						|
{{- else if .IsPage -}}
 | 
						|
 | 
						|
  {{ if .Params.is_event }}
 | 
						|
    {{ partial "schemas/schema_Event.html" . }}
 | 
						|
  {{ else if in .Params.content_types "person" }}
 | 
						|
    {{ partial "schemas/schema_Person.html" . }}
 | 
						|
  {{ else }}
 | 
						|
    {{ if gt .WordCount 100 }}
 | 
						|
      {{ partial "schemas/schema_Article.html" . }}
 | 
						|
    {{ else }}
 | 
						|
      {{ partial "schemas/schema_WebPage.html" . }}
 | 
						|
    {{ end }}
 | 
						|
  {{ end }}
 | 
						|
 | 
						|
{{- else if .IsSection -}}
 | 
						|
  {{ if .Params.is_event }}
 | 
						|
    {{ partial "schemas/schema_Event.html" . }}
 | 
						|
  {{ end }}
 | 
						|
 | 
						|
{{ end }}
 | 
						|
 | 
						|
{{ partial "schemas/schema_BreadcrumbList.html" . }}
 |