Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions assets/scss/_mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
9 changes: 7 additions & 2 deletions config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

Expand Down Expand Up @@ -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]
Expand Down
45 changes: 45 additions & 0 deletions layouts/_default/single.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{{ define "main" }}

<section class="section">
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto block shadow mb-5">
<h2>{{ .Title | markdownify }}</h2>
<div class="mb-3 post-meta">
<a href="{{ `author/` | relLangURL }}{{ .Params.Author | urlize | lower }}/">{{ .Params.Author | title }}</a>,
{{ .PublishDate.Format "Jan 2, 2006" }}, {{ range .Params.Categories }}
<a href="{{ `categories/` | relLangURL }}{{ . | urlize | lower }}/">{{ . | title }}</a>
{{ end }}
</div>
{{ if .Params.Image }}
<img src="{{ .Params.Image | relURL }}" class="img-fluid w-100 mb-4" alt="{{ .Title | markdownify }}">
{{ end }}
<div class="content mb-5">
{{ .Content }}
</div>
<div class="mb-3 post-meta">
{{range .Params.Tags }} <a href="{{ `tags/` | relLangURL}}{{ . | urlize | lower }}/">#{{ . | title }}</a>, {{ end }}
</div>
</div>
<div class="col-lg-8 mx-auto block shadow">
{{ $related := .Site.RegularPages.Related . | first 5 }}
{{ with $related }}
<h3>See Also</h3>
<ul>
{{ range . }}
<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
{{ end }}
</ul>
{{ end }}
</div>
{{ if .Site.Config.Services.Disqus.Shortname }}
<div class="col-lg-8 mx-auto block shadow">
<!-- comments -->
{{ template "_internal/disqus.html" . }}
</div>
{{ end }}
</div>
</div>
</section>

{{ end }}