2017-01-20 14:56:33 +01:00
|
|
|
{{ define "schema-dot-org" }}
|
|
|
|
<script type="application/ld+json">
|
|
|
|
{
|
|
|
|
"@context": "http://schema.org",
|
|
|
|
"@type": "Blog",
|
|
|
|
{{/* Google recommends the headline be no more than 110 characters */}}
|
|
|
|
"headline": {{ substr .Site.Title 0 110 }},
|
|
|
|
"url" : {{ printf "%s" .Permalink }},
|
|
|
|
"author": {
|
|
|
|
"@type": "Person",
|
|
|
|
"name": {{ .Site.Params.author }}
|
|
|
|
},
|
|
|
|
{{ with .Site.Social.GooglePlus }}
|
|
|
|
"publisher": {{ printf "%s" . }},
|
|
|
|
{{ end }}
|
|
|
|
{{/* all of the site's categories/tags, from Hugo's tpl/template_embedded.go */}}
|
|
|
|
"keywords": "{{ range $plural, $terms := .Site.Taxonomies }}{{ range $term, $val := $terms }}{{ printf "%s," $term }}{{ end }}{{ end }}"
|
|
|
|
{{ with .Site.Params.description }}
|
|
|
|
,
|
|
|
|
"description": {{- . -}}
|
|
|
|
{{ end }}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
{{ end }}
|
|
|
|
|
2016-09-01 16:37:27 +02:00
|
|
|
{{ define "main" }}
|
|
|
|
|
2016-11-24 13:39:39 +01:00
|
|
|
{{ $paginator := .Paginate (where .Data.Pages "Type" "post") }}
|
|
|
|
{{ range $paginator.Pages }}
|
|
|
|
{{ .Render "summary" }}
|
|
|
|
{{ end }}
|
2016-09-01 16:37:27 +02:00
|
|
|
|
2016-11-24 13:39:39 +01:00
|
|
|
{{ if or (.Paginator.HasPrev) (.Paginator.HasNext) }}
|
|
|
|
<nav class="blog-pagination">
|
|
|
|
{{ if and (.Paginator.HasPrev) (.Paginator.HasNext) }}
|
|
|
|
<a class="btn btn-outline-primary" href="{{ .Paginator.Prev.URL }}" role="button">{{ i18n "paginatorPrevious" }}</a>
|
|
|
|
<a class="btn btn-outline-primary" href="{{ .Paginator.Next.URL }}" role="button">{{ i18n "paginatorNext" }}</a>
|
|
|
|
{{ end }}
|
|
|
|
{{ if and (.Paginator.HasPrev) (not .Paginator.HasNext) }}
|
|
|
|
<a class="btn btn-outline-primary" href="{{ .Paginator.Prev.URL }}" role="button">{{ i18n "paginatorPrevious" }}</a>
|
|
|
|
<a class="btn btn-outline-primary disabled" href="#" role="button" aria-disabled="true">{{ i18n "paginatorNext" }}</a>
|
2016-10-19 04:53:14 +02:00
|
|
|
{{ end }}
|
2016-11-24 13:39:39 +01:00
|
|
|
{{ if and (not .Paginator.HasPrev) (.Paginator.HasNext) }}
|
|
|
|
<a class="btn btn-outline-primary disabled" href="#" role="button" aria-disabled="true">{{ i18n "paginatorPrevious" }}</a>
|
|
|
|
<a class="btn btn-outline-primary" href="{{ .Paginator.Next.URL }}" role="button">{{ i18n "paginatorNext" }}</a>
|
|
|
|
{{ end }}
|
|
|
|
</nav>
|
|
|
|
{{ end }}
|
2016-11-24 13:33:56 +01:00
|
|
|
|
2016-09-01 16:37:27 +02:00
|
|
|
{{ end }}
|
2016-11-24 13:33:56 +01:00
|
|
|
|
|
|
|
{{- /* vim: set ts=2 sw=2 et: */}}
|