35 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <section class="section">
 | |
|   <div class="home-title-dropdown">
 | |
|     <h2 class="home-section-posts-title">
 | |
|       {{- with $.Page.Params.posts_section_heading -}}
 | |
|         {{- . -}}
 | |
|       {{- else -}}
 | |
|         Recent Posts
 | |
|       {{- end -}}
 | |
|     </h2>
 | |
|     <select name="choice" id="select-posts">
 | |
|       {{ range (where site.Sections "Section" "posts") }}
 | |
|       <option value="all-{{ .Name | lower }}" selected>All {{ .Name | lower }}</option>
 | |
|       {{ range .Sections }}
 | |
|       {{ if .CurrentSection.Pages }}
 | |
|       <option value="{{ replace .CurrentSection.RelPermalink "/" "" | lower }}">{{ .CurrentSection.Name }}</option>
 | |
|       {{ end }}
 | |
|       {{ end }}
 | |
|       {{ end }}
 | |
|     </select>
 | |
|   </div>
 | |
|   {{ $num := .Get 0 }}
 | |
|   {{ if not $num }}
 | |
|     {{ $num = 10 }}
 | |
|   {{ end }}
 | |
|   {{ range (where site.RegularPages "Section" "posts" | first $num) }}
 | |
|     <div class="post-entry-filter entry--{{ replace .CurrentSection.RelPermalink "/" "" | lower }}">
 | |
|       {{ partial "posts/post-entry.html" . }}
 | |
|       <div class="post-entry-divider"></div>
 | |
|     </div>
 | |
|   {{ else }}
 | |
|     {{ partial "general/fallback-text.html" . }}
 | |
|   {{ end }}
 | |
|   <a class="btn-secondary see-more" href="{{ "posts/" | relURL }}">Plus de publications</a>
 | |
| </section>
 |