{{ define "main" }}
    <div class="container markdown top-pad">
        {{ .Content }}
    </div>
    <div class="container">
        {{ if .Site.Params.showLatest }}
        <h2 class="title is-2 top-pad">{{ i18n "index_blog_latestPosts" . }}</h2>
        {{ range first 1 .Pages.ByPublishDate.Reverse }}
        <div class="summary">{{ .Date.Format (.Site.Params.dateForm | default "Jan 02, 2006") }}
            <h3 class="title is-3 strong-post-title">
                <a href="{{ .RelPermalink }}">
                    {{ .Title }}
                </a>
            </h3>
            <div class="markdown">
                {{ .Summary }}
                {{ if .Truncated }}
                <a href="{{ .RelPermalink }}">{{ i18n "index_blog_readMore" . }}</a>
                {{ end }}
            </div>
        </div>
        {{ end }}

        {{ end }}
        <h2 class="title is-2 top-pad">{{ i18n "index_blog_allPosts" . }}</h2>
        {{ partialCached "blog/li.html" . }}
    </div>
{{ end }}