diff --git a/assets/sass/pages/_single.scss b/assets/sass/pages/_single.scss index a5ca20f..9ec384d 100644 --- a/assets/sass/pages/_single.scss +++ b/assets/sass/pages/_single.scss @@ -284,7 +284,7 @@ } code, pre { - padding: 7px; + padding: 0.25rem; line-height: 1.5em; font-size: $code-font-size; font-family: $code-font-stack; diff --git a/assets/sass/themes/_dark.scss b/assets/sass/themes/_dark.scss index 95e4faa..3332f93 100644 --- a/assets/sass/themes/_dark.scss +++ b/assets/sass/themes/_dark.scss @@ -49,7 +49,7 @@ $dark: ( content-pre-main-color: #FFA7C4, content-pre-color: #eee, content-pre-number-color: #666, - content-pre-background-color: #1d232f, + content-pre-background-color: #171f2e, content-pre-header-background-color: darken(#011627, 1.5%), content-pre-border-background-color: #3a3a3a, content-pre-header-color: #FCFCFA, diff --git a/exampleSite/config/_default/config.toml b/exampleSite/config/_default/config.toml index a81b4da..c2eba89 100644 --- a/exampleSite/config/_default/config.toml +++ b/exampleSite/config/_default/config.toml @@ -14,6 +14,7 @@ enableEmoji = true paginate = 13 rssLimit = 100 +#pygmentsStyle = "monokai" pygmentsOptions = "linenos=table" pygmentsCodefences = true pygmentsUseClasses = true diff --git a/layouts/partials/head/scripts.html b/layouts/partials/head/scripts.html index 9a9134d..cb03b16 100644 --- a/layouts/partials/head/scripts.html +++ b/layouts/partials/head/scripts.html @@ -1,3 +1,10 @@ +{{ $jquery := resources.Get "js/jquery.min.js" | resources.Fingerprint }} + +{{ $enquire := resources.Get "js/enquire.min.js" | resources.Fingerprint }} + +{{ $zzo := resources.Get "js/zzo.js" | resources.Minify | resources.Fingerprint }} + + {{ if .Site.Params.custom_js }} {{ range .Site.Params.custom_js }} {{ $custom_template := resources.Get . }} @@ -6,4 +13,188 @@ {{ end }} {{ end }} -{{ end }} \ No newline at end of file +{{ end }} + + \ No newline at end of file diff --git a/layouts/partials/script/about-script.html b/layouts/partials/script/about-script.html index 2fbf6dd..97b3aeb 100644 --- a/layouts/partials/script/about-script.html +++ b/layouts/partials/script/about-script.html @@ -7,184 +7,6 @@ \ No newline at end of file diff --git a/layouts/partials/script/archive-script.html b/layouts/partials/script/archive-script.html index 71f1610..5257c60 100644 --- a/layouts/partials/script/archive-script.html +++ b/layouts/partials/script/archive-script.html @@ -6,185 +6,7 @@ \ No newline at end of file diff --git a/layouts/partials/script/gallery-script.html b/layouts/partials/script/gallery-script.html index 5ade6cb..b84421c 100644 --- a/layouts/partials/script/gallery-script.html +++ b/layouts/partials/script/gallery-script.html @@ -19,6 +19,9 @@ \ No newline at end of file diff --git a/layouts/partials/script/home-script.html b/layouts/partials/script/home-script.html index c284174..1df1c53 100644 --- a/layouts/partials/script/home-script.html +++ b/layouts/partials/script/home-script.html @@ -10,183 +10,6 @@ \ No newline at end of file diff --git a/layouts/partials/script/list-script.html b/layouts/partials/script/list-script.html index c284174..1df1c53 100644 --- a/layouts/partials/script/list-script.html +++ b/layouts/partials/script/list-script.html @@ -10,183 +10,6 @@ \ No newline at end of file diff --git a/layouts/partials/script/single-script.html b/layouts/partials/script/single-script.html index f2791e9..d36bb25 100644 --- a/layouts/partials/script/single-script.html +++ b/layouts/partials/script/single-script.html @@ -7,7 +7,7 @@ {{ $enquire := resources.Get "js/enquire.min.js" | resources.Fingerprint }} -{{ $prism := resources.Get "js/prism.min.js" | resources.Minify | resources.Fingerprint }} +{{ $prism := resources.Get "js/prism.min.js" | resources.Fingerprint }} {{ $zzo := resources.Get "js/zzo.js" | resources.Minify | resources.Fingerprint }} @@ -86,184 +86,7 @@ }); // search - {{ $searchLanguages := .Site.Params.searchLanguages }} - var searchLanguages = JSON.parse({{ $searchLanguages | jsonify }}); - {{ if .Site.IsMultiLingual }} - var baseurl = "{{.Site.BaseURL}}{{.Site.LanguagePrefix}}"; - {{ else }} - var baseurl = "{{.Site.BaseURL}}"; - {{ end }} - - if (!searchLanguages) { - searchLanguages = ['en']; - } - - var lunrIndex = null; - var pagesIndex = null; - var searchResults = null; - var searchMenu = null; - - function endsWith(str, suffix) { - return str.indexOf(suffix, str.length - suffix.length) !== -1; - } - - function initLunr() { - if (!endsWith(baseurl, "/")) { - baseurl = baseurl + '/'; - }; - - $.getJSON(baseurl + "index.json") - .done(function (index) { - pagesIndex = index; - lunrIndex = lunr(function () { - this.use(lunr.multiLanguage(...searchLanguages)); - this.ref('uri'); - this.field('title'); - this.field('description'); - this.field('content'); - //this.field('tags'); - //this.field('series'); - //this.field('categories'); - - var that = this; - index.forEach(function (page) { - that.add(page); - }); - }); - }) - .fail(function (jqxhr, textStatus, error) { - var err = textStatus + ", " + error; - console.error("Error getting Hugo index file:", err); - }); - } - - function search(query) { - return lunrIndex.search(query).map(function (result) { - return pagesIndex.filter(function (page) { - return page.uri === result.ref; - })[0]; - }); - } - - function renderSearchResults(results) { - searchResults = document.getElementById('search-results'); - searchMenu = document.getElementById('search-menu'); - searchResults.setAttribute('class', 'dropdown is-active'); - - var content = document.createElement('div'); - content.setAttribute('class', 'dropdown-content search-content'); - - if (results.length > 0) { - results.forEach(function (result) { - var item = document.createElement('a'); - item.setAttribute('href', result.uri); - item.setAttribute('class', 'dropdown-item'); - item.innerHTML = `
`; - content.appendChild(item); - }); - } else { - var item = document.createElement('span'); - item.setAttribute('class', 'dropdown-item'); - item.innerText = 'No results found'; - content.appendChild(item); - } - - while (searchMenu.hasChildNodes()) { - searchMenu.removeChild( - searchMenu.lastChild - ); - } - searchMenu.appendChild(content); - } - - function renderSearchResultsMobile(results) { - searchResults = document.getElementById('search-mobile-results'); - - var content = document.createElement('div'); - content.setAttribute('class', 'mobile-search__content'); - - if (results.length > 0) { - results.forEach(function (result) { - var item = document.createElement('a'); - item.setAttribute('href', result.uri); - item.innerHTML = `