da5b40d168
- First (pinned) post on mobile: title and image centered - Pagination: restored page counter on mobile, buttons above footer - Typography and layout minor improvements Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
14 lines
560 B
HTML
Executable File
14 lines
560 B
HTML
Executable File
{{ $jQuery := resources.Get "js/jquery.min.js" }}
|
|
{{ $scrollex := resources.Get "js/jquery.scrollex.min.js" }}
|
|
{{ $scrolly := resources.Get "js/jquery.scrolly.min.js" }}
|
|
{{ $browser := resources.Get "js/browser.min.js" }}
|
|
{{ $breakpoints := resources.Get "js/breakpoints.min.js" }}
|
|
{{ $util := resources.Get "js/util.js" }}
|
|
{{ $main := resources.Get "js/main.js" }}
|
|
|
|
{{ $js := slice $jQuery $scrollex $scrolly $browser $breakpoints $util $main | resources.Concat "assets/js/bundle.js" }}
|
|
|
|
<!-- Scripts -->
|
|
<script src='{{ $js.RelPermalink }}' defer></script>
|
|
|