parent
40da5d623a
commit
8fc29dc5b6
Binary file not shown.
@ -0,0 +1,13 @@
|
||||
module.exports = function (api) {
|
||||
api.cache(true);
|
||||
|
||||
const presets = [
|
||||
require('@babel/preset-env')
|
||||
];
|
||||
const plugins = [ ];
|
||||
|
||||
return {
|
||||
presets,
|
||||
plugins
|
||||
};
|
||||
}
|
@ -1,3 +1,3 @@
|
||||
{{ define "main" }}
|
||||
{{ partial "portfoliolite.html" . }}
|
||||
{{ partial "gamegrid.html" . }}
|
||||
{{ end }}
|
@ -1,3 +0,0 @@
|
||||
| Template by <a href="https://bootstrapious.com/free-templates" class="external">Bootstrapious.com</a>
|
||||
<!-- Not removing this link is part of the licence conditions of the template. Thanks for understanding :) -->
|
||||
& ported to Hugo by <a href="https://github.com/kishaningithub">Kishan B</a>
|
@ -1,3 +1,11 @@
|
||||
<script defer src="{{ "js/scrollingelement.js" | absURL }}"></script>
|
||||
<script defer src='/js/simple-lightbox.min.js'></script>
|
||||
<script src="{{ "js/codex.js" | absURL }}"></script>
|
||||
|
||||
{{- $mainScriptPath := "js/codex.js" }}
|
||||
{{- $scripts := resources.Get $mainScriptPath | resources.ExecuteAsTemplate $mainScriptPath . | babel | resources.Minify | resources.Fingerprint "sha512" }}
|
||||
<script defer src='{{ $scripts.Permalink }}'></script>
|
||||
|
||||
{{- if (ne hugo.Environment "development") }}
|
||||
<script data-goatcounter="https://stats.jefklakscodex.com/count"
|
||||
async src="//stats.jefklakscodex.com/count.js"></script>
|
||||
{{- end }}
|
||||
|
Loading…
Reference in new issue