{{ partial "head.html" . }}
{{ partial "navbar.html" . }} {{ partial "breadcrumbs.html" . }}
{{ $paginator := .Paginate (where .Data.Pages "Type" "blog") }} {{ range $paginator.Pages }}

{{ .Title }}

{{ if isset .Params "author" }} {{ i18n "authorBy" }} {{ .Params.author }} {{ end }} {{ if isset .Params "categories" }} {{ if gt (len .Params.categories) 0 }} in {{ index .Params.categories 0 }} {{ end }} {{ end }}

{{ if isset .Params "date" }}

{{ .Date.Format .Site.Params.date_format }}

{{ end }}
{{ $maxSummaryLength := 200 }} {{ if gt (len .Summary) $maxSummaryLength }}

{{ substr .Summary 0 $maxSummaryLength }}...

{{ else }}

{{ .Summary }}

{{ end }}

{{ i18n "continueReading" }}

{{ end }}
{{ partial "sidebar.html" . }}
{{ partial "LP_components/Footer.html" . }}
{{ partial "scripts.html" . }}