28 lines
		
	
	
		
			665 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			665 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{ $page := . }}
 | |
| 
 | |
| {{ $result := slice }}
 | |
| 
 | |
| {{ with $page.Keywords }}
 | |
|     {{ $result = . }}
 | |
| {{ end }}
 | |
| 
 | |
| {{ with $page.GetTerms "categories" }}
 | |
|     {{ range . }}
 | |
|         {{ $result = $result | append (.Title | markdownify | plainify | htmlUnescape) }}
 | |
|     {{ end }}
 | |
| {{ else with $page.Params.categories}}
 | |
|     {{ $result = $result | append . }}
 | |
| {{ end }}
 | |
| 
 | |
| {{ with $page.GetTerms "tags" }}
 | |
|     {{ range . }}
 | |
|         {{ $result = $result | append (.Title | markdownify | plainify | htmlUnescape) }}
 | |
|     {{ end }}
 | |
| {{ else with $page.Params.tags }}
 | |
|     {{ $result = $result | append . }}
 | |
| {{ end }}
 | |
| 
 | |
| {{ $result = delimit ($result | uniq | sort) ", " }}
 | |
| 
 | |
| {{ return $result }}
 |