112 lines
3.4 KiB
HTML
112 lines
3.4 KiB
HTML
{{ define "title" }}
|
|
“{{ .Title | plainify }}” |
|
|
{{ .Site.Title }}
|
|
{{ end }}
|
|
|
|
{{ define "main-class" }}--single layouts-blog-single{{ end }}
|
|
|
|
{{ define "header-scripts" }}
|
|
{{ with .Params.locations }}
|
|
<script
|
|
id="Map-script"
|
|
src="/js/leaflet/leaflet.js"
|
|
></script>
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
{{ define "header-styles" }}
|
|
{{ with .Params.styles }}
|
|
<link
|
|
rel="stylesheet"
|
|
type="text/css"
|
|
href="{{ ( $.Page.Resources.GetMatch "style").RelPermalink }}"
|
|
/>
|
|
{{ end }}
|
|
{{ with .Params.locations }}
|
|
<link
|
|
rel="stylesheet"
|
|
href="/css/leaflet/leaflet.css"
|
|
/>
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
{{ define "footer-scripts" }}
|
|
{{ with .Params.locations }}
|
|
<script>
|
|
var map = L.map('map').setView([55, -3], 13);
|
|
|
|
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
|
maxZoom: 19,
|
|
attribution: '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a>'
|
|
}).addTo(map);
|
|
|
|
var latLons = [];
|
|
{{ $locations := partialCached "util/get_location_leaf_nodes.html" $.Site.Data.locations -}}
|
|
{{- range . -}}
|
|
{{- with ( index $locations ( replaceRE `, [A-Z]+` "" . ) ) -}}
|
|
L.marker([{{ .lat }}, {{ .lon }}]).addTo(map);
|
|
latLons.push([{{ .lat }}, {{ .lon }}]);
|
|
{{- else -}}
|
|
{{- erroridf "missing-lat-lon" "Could not find lat-lon for %q (%q)" . $.File.Path -}}
|
|
{{- end -}}
|
|
{{- end }}
|
|
|
|
map.fitBounds(latLons);
|
|
if (map.getZoom() < 10) map.setZoom(10);
|
|
</script>
|
|
{{ end }}
|
|
{{ if $.HasShortcode "chart" }}
|
|
{{ $chartsConfigJS := $.Page.Resources.GetMatch "charts-init" | fingerprint }}
|
|
<script
|
|
id="Charts-script"
|
|
src="/js/chart/chart.js"
|
|
></script>
|
|
<script src="/js/chartjs-plugin-annotation/dist/chartjs-plugin-annotation.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/chartjs-adapter-date-fns/dist/chartjs-adapter-date-fns.bundle.min.js"></script>
|
|
<script
|
|
id="Charts-config-script"
|
|
src="{{ $chartsConfigJS.Permalink }}"
|
|
integrity="{{ $chartsConfigJS.Data.Integrity }}"
|
|
></script>
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
{{ define "main-header" }}
|
|
{{ partial "single/main-header.html" ( dict "pc" . "sc" $ ) }}
|
|
{{ end }}
|
|
|
|
{{ define "main-body" }}
|
|
<section class="site-content__body">
|
|
{{ with .Summary }}
|
|
<section
|
|
class="article-body__summary"
|
|
itemprop="abstract"
|
|
>
|
|
<h2>Summary</h2>
|
|
<p class="p-summary">{{ . }}</p>
|
|
</section>
|
|
{{ end }}
|
|
|
|
{{- if ( or .Params.internal_links .Params.external_links ) -}}
|
|
{{- partial "single/main-body/links.html" ( dict "pc" . "sc" $ ) -}}
|
|
{{- end -}}
|
|
|
|
{{- partial "single/main-body/content.html" ( dict "pc" . "sc" $ ) -}}
|
|
|
|
{{ if fileExists ( path.Join $.Page.File.Dir "appendices.md" ) }}
|
|
{{- partial "single/main-body/appendices.html" ( dict "pc" . "sc" $ ) -}}
|
|
{{ end }}
|
|
|
|
{{ if fileExists ( path.Join $.Page.File.Dir "corrigendum.md" ) }}
|
|
{{- partial "single/main-body/appendices.html" ( dict "pc" . "sc" $ ) -}}
|
|
{{ end }}
|
|
</section>
|
|
|
|
{{ with .Page.Resources.Get "comments.md" }}
|
|
{{- partial "single/main-body/comments.html" ( dict "pc" . "sc" $ ) -}}
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
{{ define "main-footer" }}
|
|
{{ partial "single/post-meta.html" ( dict "pc" . "sc" $ ) }}
|
|
{{ end }}
|