diff --git a/assets/scss/_mixins.scss b/assets/scss/_mixins.scss index 376a754..d736ad9 100644 --- a/assets/scss/_mixins.scss +++ b/assets/scss/_mixins.scss @@ -68,6 +68,23 @@ .search-btn:hover{ color: #40ba84; } + +// Search box visibility improvements +.search-wrapper { + background: rgba(0, 0, 0, 0.05); // subtle overlay +} +.search-box { + border: 2px solid #40ba84 !important; // CircuitVerse green border + border-radius: 5px; + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); // subtle shadow +} +.search-close { + background: rgba(255, 255, 255, 0.9); + border-radius: 50%; + padding: 5px; + width: 35px; + height: 35px; +} .navbar-brand{ padding-bottom: 0; } diff --git a/config.toml b/config.toml index 3f3d8ac..e7717e1 100644 --- a/config.toml +++ b/config.toml @@ -7,9 +7,14 @@ theme = "northendlab-hugo" paperSize = "5" # post excerpt summaryLength = "10" -# disqus short name +# disqus short name (deprecated but kept for Hugo 0.73.0 compatibility) disqusShortname = "blog-circuitverse-org" # get your shortname form here : https://disqus.com +# Disqus configuration (current Hugo format) +[services] + [services.disqus] + shortname = "blog-circuitverse-org" + [outputs] home = ["HTML", "AMP", "RSS", "JSON"] @@ -64,7 +69,7 @@ google_analitycs_id = "UA-112678513-4" # your id # contact form action contact_form_action = "https://formspree.io/support@circuitverse.org" # contact form works with : https://formspree.io # copyright -copyright = "© 2025 [CircuitVerse](https://circuitverse.org) All Rights Reserved" +copyright = "© 2026 [CircuitVerse](https://circuitverse.org) All Rights Reserved" # preloader [params.preloader] diff --git a/layouts/_default/single.html b/layouts/_default/single.html new file mode 100644 index 0000000..a583a06 --- /dev/null +++ b/layouts/_default/single.html @@ -0,0 +1,45 @@ +{{ define "main" }} + +
+
+
+
+

{{ .Title | markdownify }}

+ + {{ if .Params.Image }} + {{ .Title | markdownify }} + {{ end }} +
+ {{ .Content }} +
+ +
+
+ {{ $related := .Site.RegularPages.Related . | first 5 }} + {{ with $related }} +

See Also

+ + {{ end }} +
+ {{ if .Site.Config.Services.Disqus.Shortname }} +
+ + {{ template "_internal/disqus.html" . }} +
+ {{ end }} +
+
+
+ +{{ end }}