Skip to content
Snippets Groups Projects
large.html 334 B
Newer Older
alexisben's avatar
alexisben committed
{{ $heading_level := .heading_level | default 3 }}
{{ $heading := printf "h%d" $heading_level }}
<div class="grid">
  {{ range $post := .posts -}}
    {{ with site.GetPage (printf "/posts/%s" $post) }}
      {{ partial "posts/post.html" (dict 
        "post" .
        "heading" $heading
        ) }}
    {{ end }}
  {{ end }}
</div>