18 lines
		
	
	
		
			540 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			540 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{ define "main" }}
 | |
|   <article class="cf pa3 pa4-m pa4-l">
 | |
|     <div class="measure-wide-l center f4 lh-copy nested-copy-line-height nested-links nested-img mid-gray">
 | |
|       <p>{{i18n "taxonomyPageList" .}}</p>
 | |
|     </div>
 | |
|   </article>
 | |
|   <div class="center">    
 | |
|     <section class="flex-ns flex-wrap justify-around mt5">
 | |
|       {{/* List of articles with the tag */}}
 | |
|       {{ range  .Pages }}
 | |
|         <div class="relative w-100 w-30-l mb4">
 | |
|           {{  .Render "summary" }}
 | |
|         </div>
 | |
|       {{ end }}
 | |
|     </section>
 | |
|   </div>
 | |
| {{ end }}
 |