Files
landing_page/qdrant-landing/themes/qdrant/layouts/blog/single.html
T
trean bc752e5310 Fixes of styles for mobile view (#42)
- fixed the main menu on middle size screens
- changed some padding and sizes on all pages
- moved the side block of the blog to the end of the page on mobile sizes
2022-05-10 16:07:13 +02:00

16 lines
403 B
HTML

{{ define "main" }}
<section class="auto-container pt-3 pt-md-5 single-page">
<div class="row clearfix">
<!-- Sidebar Side -->
{{ .Scratch.Set "scope" "single" }}
{{ partial "blog-sidebar" . }}
<!-- Content Side -->
<div class="content-side col-lg-8 col-md-12 col-sm-12">
{{ partial "blogpost" .}}
</div>
</div>
</section>
{{ end }}