mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-23 15:57:57 +00:00
47 lines
3 KiB
HTML
47 lines
3 KiB
HTML
<footer class="footline">
|
|
{{- with .Params.LastModifierDisplayName }}
|
|
<i class='fas fa-user'></i> <a href="mailto:{{ $.Params.LastModifierEmail }}">{{ . }}</a> {{ with $.Date }} <i class='fas fa-calendar'></i> {{ .Format "02/01/2006" }}{{ end }}
|
|
{{- end }}
|
|
</footer>
|
|
</main><!-- #body-inner -->
|
|
{{- partial "custom-comments.html" . }}
|
|
</div><!-- #body -->
|
|
<div style="left: -1000px; overflow: scroll; position: absolute; top: -1000px; border: none; box-sizing: content-box; height: 200px; margin: 0px; padding: 0px; width: 200px;">
|
|
<div style="border: none; box-sizing: content-box; height: 200px; margin: 0px; padding: 0px; width: 200px;"></div>
|
|
</div>
|
|
<script src="{{"js/clipboard.min.js" | relURL}}{{ if not .Site.Params.disableAssetsBusting }}?{{ now.Unix }}{{ end }}"></script>
|
|
<script src="{{"js/perfect-scrollbar.min.js" | relURL}}{{ if not .Site.Params.disableAssetsBusting }}?{{ now.Unix }}{{ end }}"></script>
|
|
<script src="{{"js/jquery.svg.pan.zoom.js" | relURL}}{{ if not .Site.Params.disableAssetsBusting }}?{{ now.Unix }}{{ end }}"></script>
|
|
<script src="{{"js/featherlight.min.js" | relURL}}{{ if not .Site.Params.disableAssetsBusting }}?{{ now.Unix }}{{ end }}"></script>
|
|
<script src="{{"js/modernizr.custom-3.6.0.js" | relURL}}{{ if not .Site.Params.disableAssetsBusting }}?{{ now.Unix }}{{ end }}"></script>
|
|
{{- if (or (and (ne .Params.disableMermaid nil) (not .Params.disableMermaid)) (not .Site.Params.disableMermaid)) }}
|
|
{{- if isset .Params "custommermaidurl" }}
|
|
<script src="{{ .Params.customMermaidURL }}"></script>
|
|
{{- else if isset .Site.Params "custommermaidurl" }}
|
|
<script src="{{ .Site.Params.customMermaidURL }}"></script>
|
|
{{- else }}
|
|
<script src="{{"js/mermaid.min.js" | relURL}}{{ if not .Site.Params.disableAssetsBusting }}?{{ now.Unix }}{{ end }}"></script>
|
|
{{- end }}
|
|
{{- if isset .Params "mermaidinitialize" }}
|
|
{{- $.Scratch.Set "mermaidInitialize" .Params.mermaidInitialize }}
|
|
{{- else if isset .Site.Params "mermaidinitialize" }}
|
|
{{- $.Scratch.Set "mermaidInitialize" .Site.Params.mermaidInitialize }}
|
|
{{- else }}
|
|
{{- $.Scratch.Set "mermaidInitialize" "{ \"startOnLoad\": true }" }}
|
|
{{- end }}
|
|
<script>
|
|
if (typeof mermaid != 'undefined' && typeof mermaid.mermaidAPI != 'undefined') {
|
|
mermaid.mermaidAPI.initialize( Object.assign( { "securityLevel": "antiscript" }, JSON.parse({{ $.Scratch.Get "mermaidInitialize" }}), { startOnLoad: false } ) );
|
|
}
|
|
</script>
|
|
{{- end }}
|
|
<script>
|
|
window.T_Copy_to_clipboard = '{{ T "Copy-to-clipboard" | safeJS }}';
|
|
window.T_Copied_to_clipboard = '{{ T "Copied-to-clipboard" | safeJS }}';
|
|
window.T_Copy_link_to_clipboard = '{{ T "Copy-link-to-clipboard" | safeJS }}';
|
|
window.T_Link_copied_to_clipboard = '{{ T "Link-copied-to-clipboard" | safeJS }}';
|
|
</script>
|
|
<script src="{{"js/theme.js" | relURL}}{{ if not .Site.Params.disableAssetsBusting }}?{{ now.Unix }}{{ end }}"></script>
|
|
{{- partial "custom-footer.html" . }}
|
|
</body>
|
|
</html>
|