mirror of
				https://github.com/BBaoVanC/bobatheme.git
				synced 2025-10-31 10:03:30 -05:00 
			
		
		
		
	References: - https://github.com/gohugoio/hugo/releases/tag/v0.120.0 - https://github.com/gohugoio/hugo/issues/10876 - https://github.com/gohugoio/hugo/issues/11502
		
			
				
	
	
		
			18 lines
		
	
	
		
			490 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			490 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{ with (.GetTerms "series") }}
 | |
|     {{ $series := slice }}
 | |
|     {{ range . }}
 | |
|         {{ $series = $series | append (printf `<a href="%s">%s</a>` .Permalink .LinkTitle) }}
 | |
|     {{ end }}
 | |
| 
 | |
|     <div class="series-box">
 | |
|         {{ partial "icon.html" "info" }}
 | |
|         {{ if gt (len $series) 1 }}
 | |
|             This post is part of multiple series:
 | |
|         {{ else }}
 | |
|             This post is part of a series:
 | |
|         {{ end }}
 | |
| 
 | |
|         {{ delimit $series ", " | safeHTML }}
 | |
|     </div>
 | |
| {{ end }}
 |