footer: allow disabling HLJS #143

usage =>

in site config =>
    params:
        assets:
            disableHLJS: true

per-page in front-matter =>
   disableHLJS: true
This commit is contained in:
Aditya Telange 2020-12-29 16:03:49 +05:30
parent 838e607122
commit e252e761f5
No known key found for this signature in database
GPG Key ID: 82E844EF3DA99E77
2 changed files with 3 additions and 2 deletions

View File

@ -18,7 +18,7 @@
{{- block "main" . }}
{{- end }}
</main>
{{- partialCached "footer.html" . .Type .Layout }}
{{- partialCached "footer.html" . .Type .Layout .Params }}
</body>
</html>

View File

@ -18,7 +18,8 @@
</button>
</a>
{{- partial "extend_footer.html" . -}}
{{ if (and (in site.Params.mainSections .Type) (ne .Layout `archives`) (ne .Layout `search`)) }}
{{- $isHLJSdisabled := (.Site.Params.assets.disableHLJS | default .Params.disableHLJS ) }}
{{- if (and (in site.Params.mainSections .Type) (ne .Layout `archives`) (ne .Layout `search`) (not $isHLJSdisabled)) }}
{{- if not .Site.Params.assets.disableFingerprinting }}
{{- $highlight := slice (resources.Get "js/highlight.min.js") | resources.Concat "assets/js/highlight.js" | minify | fingerprint }}
<script defer src="{{ $highlight.Permalink }}" integrity="{{ $highlight.Data.Integrity }}"