Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/themefisher/bigspring-hugo-startup-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsomratpro <abdulmonnafsomrat@gmail.com>2021-09-23 07:37:39 +0300
committersomratpro <abdulmonnafsomrat@gmail.com>2021-09-23 07:37:39 +0300
commit4e8a765f18f71b7b507db0c617a475384810e09c (patch)
tree238cddb33c8f0a60c94823fd969848396b03b8e1
parentf0e4112055e237dc8384b59eb148082fe29afe81 (diff)
fixed twitter-meta and header partialcached
-rw-r--r--.gitignore3
-rw-r--r--assets/scss/templates/_navigation.scss5
-rw-r--r--exampleSite/config/_default/config.toml2
-rw-r--r--exampleSite/resources/_gen/assets/scss/scss/style.scss_c3df5db6494569b557bc45b29ecd59ff.content4
-rw-r--r--layouts/_default/baseof.html3
-rw-r--r--layouts/partials/head.html1
6 files changed, 13 insertions, 5 deletions
diff --git a/.gitignore b/.gitignore
index 8b35474..76983ea 100644
--- a/.gitignore
+++ b/.gitignore
@@ -7,4 +7,5 @@ npm-debug.log
node_modules
builds
package-lock.json
-public \ No newline at end of file
+public
+resources \ No newline at end of file
diff --git a/assets/scss/templates/_navigation.scss b/assets/scss/templates/_navigation.scss
index caf5989..84a76a4 100644
--- a/assets/scss/templates/_navigation.scss
+++ b/assets/scss/templates/_navigation.scss
@@ -21,4 +21,9 @@
@include desktop {
padding: 10px;
}
+}
+
+#select-language{
+ background-color: transparent;
+ font-weight: 700;
} \ No newline at end of file
diff --git a/exampleSite/config/_default/config.toml b/exampleSite/config/_default/config.toml
index 2e79f8b..f8f06ad 100644
--- a/exampleSite/config/_default/config.toml
+++ b/exampleSite/config/_default/config.toml
@@ -1,6 +1,6 @@
######################## default configuration ####################
baseURL = "http://examplesite.org/"
-title = "Bigspring Hugo"
+title = "Bigspring Light"
theme = "bigspring-light"
# post pagination
paginate = "3"
diff --git a/exampleSite/resources/_gen/assets/scss/scss/style.scss_c3df5db6494569b557bc45b29ecd59ff.content b/exampleSite/resources/_gen/assets/scss/scss/style.scss_c3df5db6494569b557bc45b29ecd59ff.content
index 6484794..658614f 100644
--- a/exampleSite/resources/_gen/assets/scss/scss/style.scss_c3df5db6494569b557bc45b29ecd59ff.content
+++ b/exampleSite/resources/_gen/assets/scss/scss/style.scss_c3df5db6494569b557bc45b29ecd59ff.content
@@ -284,6 +284,10 @@ textarea.form-control {
@media (max-width: 991px) {
.navbar-expand-lg .navbar-nav .nav-link {
padding: 10px; } }
+#select-language {
+ background-color: transparent;
+ font-weight: 700; }
+
.banner {
padding: 100px 0 50px; }
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index 2fd065e..92f44dc 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -24,11 +24,10 @@ AUTHOR WEBSITE: https://gethugothemes.com
{{ if hugo.IsProduction }}
{{ partialCached "preloader.html" . }}
- {{ partialCached "header.html" . }}
{{ else }}
{{ partial "preloader.html" . }}
- {{ partial "header.html" . }}
{{ end }}
+ {{ partial "header.html" . }}
<main>
{{ block "main" . }}{{ end }}
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index 3875129..3f6d09e 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -56,7 +56,6 @@
{{ end -}}
{{ template "_internal/opengraph.html" . }}
-{{ template "_internal/twitter_cards.html" . }}
<!-- google analytics -->
{{ template "_internal/google_analytics.html" . }} \ No newline at end of file