2021-11-01 07:27:41 +01:00
<!doctype html>
< html lang = "en" >
< head >
{{ partial "head-meta.html" . }}
< title > {{ block "title" . }}{{ .Site.Title }}{{ end }}< / title >
< link rel = "canonical" href = "{{ .Permalink }}" >
2021-12-21 17:31:02 +01:00
{{ block "style" . }}
{{ $style := resources.Get "css/iseal.min.css" | resources.Fingerprint }}
2021-11-01 07:27:41 +01:00
< link href = "{{ $style.Permalink }}" rel = "stylesheet" integrity = "{{ $style.Data.Integrity }}" crossorigin = "anonymous" >
2021-12-21 17:31:02 +01:00
{{ end }}
2021-11-01 07:27:41 +01:00
< / head >
<!-- body start is in main because it needs scrollspy only on home -->
{{ block "main" . }}
<!-- The part of the page that begins to differ between templates -->
{{ end }}
< footer class = "footer mt-auto" >
< div class = "container" >
2021-12-02 09:51:12 +01:00
< p class = "mb-0 py-1" > ISEAL Core Metadata Set. This work is licensed under a < a href = "https://creativecommons.org/licenses/by-sa/4.0/" > Creative Commons Attribution-ShareAlike 4.0 International License< / a > .< span class = "float-end" > < span class = "text-white-50" > Last modified {{ now.Format "Monday, Jan 2, 2006" }}< / span > < a href = "#" > Back to top< / a > < / span > < / p >
2021-11-01 07:27:41 +01:00
< / div >
< / footer >
{{ $js := resources.Get "js/bundle.min.js" | resources.Fingerprint }}
< script src = "{{ $js.Permalink }}" integrity = "{{ $js.Data.Integrity }}" crossorigin = "anonymous" async > < / script >
< / body >
< / html >