From 4b472ec6bb2deaefd618063e945c4c2c712b029e Mon Sep 17 00:00:00 2001 From: Serghei Iakovlev Date: Tue, 31 May 2022 23:59:53 +0200 Subject: Add missed go.sum for exampleSite --- exampleSite/go.sum | 2 ++ 1 file changed, 2 insertions(+) diff --git a/exampleSite/go.sum b/exampleSite/go.sum index e69de29..d940ced 100644 --- a/exampleSite/go.sum +++ b/exampleSite/go.sum @@ -0,0 +1,2 @@ +github.com/sergeyklay/gohugo-theme-ed v0.0.0-20220424201054-c40490eb087e h1:8Lwe8SYrMB/GG3Fb+/dyK/yBVWDMc2B1I/ifovUzcZI= +github.com/sergeyklay/gohugo-theme-ed v0.0.0-20220424201054-c40490eb087e/go.mod h1:/wlttvayDGQGAoLINmDTucvGnbgWgjpUxetXbyUU5XM= -- cgit v1.2.3 From 136e26a87decd1ddfdcbefd7632d9f6782625221 Mon Sep 17 00:00:00 2001 From: Serghei Iakovlev Date: Wed, 1 Jun 2022 00:00:19 +0200 Subject: Help editorconfig-checker --- assets/sass/_customize.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/sass/_customize.scss b/assets/sass/_customize.scss index 5eb978a..4242627 100644 --- a/assets/sass/_customize.scss +++ b/assets/sass/_customize.scss @@ -173,8 +173,8 @@ ul.pager li { -moz-border-radius-bottomright:4px; border-bottom-right-radius:4px; -webkit-border-top-right-radius:4px; - -moz-border-radius-topright:4px; - border-top-right-radius:4px; + -moz-border-radius-topright:4px; // editorconfig-checker-disable-line + border-top-right-radius:4px; // editorconfig-checker-disable-line } .post-tags a:before { -- cgit v1.2.3 From 879035b1765580d5bc31c19efc343a392db3ca71 Mon Sep 17 00:00:00 2001 From: Serghei Iakovlev Date: Wed, 1 Jun 2022 00:03:58 +0200 Subject: Fix netlify.toml build flags --- netlify.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/netlify.toml b/netlify.toml index 5e671c6..240d8aa 100644 --- a/netlify.toml +++ b/netlify.toml @@ -15,13 +15,13 @@ HUGO_ENV = 'production' [context.deploy-preview] - command = 'hugo --gc --minify ---buildDrafts --buildFuture -b $DEPLOY_PRIME_URL' + command = 'hugo --gc --minify --buildDrafts --buildFuture --baseURL $DEPLOY_PRIME_URL' [context.deploy-preview.environment] HUGO_VERSION = '0.99.1' [context.branch-deploy] - command = 'hugo --gc --minify -b $DEPLOY_PRIME_URL' + command = 'hugo --gc --minify --baseURL $DEPLOY_PRIME_URL' [context.branch-deploy.environment] HUGO_VERSION = '0.99.1' -- cgit v1.2.3