mirror of
https://github.com/qdrant/landing_page.git
synced 2026-09-26 14:38:30 +02:00
* WIP: blog layout * categories and tags widgets * moved blog post previews to partials * blog categories and tags * blog post page * whole posts in the list * some fixes for blog posts list * single page is available from list view * fixes * share links * fix * added open graph meta tags * added twitter meta tags * added gitignore * added pagination * fixed red corners on previews * added an author link * fix
24 lines
758 B
HTML
24 lines
758 B
HTML
{{ define "main" }}
|
|
<section class="auto-container pt-5">
|
|
<div class="row">
|
|
{{ partial "blog-sidebar" . }}
|
|
|
|
<div class="content-side col-lg-8 col-md-12 col-sm-12">
|
|
<h3>Categories</h3>
|
|
<ul>
|
|
{{ range $name, $taxonomy := .Site.Taxonomies.categories }}
|
|
<li><a href='{{ "/categories/" | relLangURL }}{{ $name | urlize }}'>{{ $name }}</a></li>
|
|
{{end}}
|
|
</ul>
|
|
|
|
<h3>Tags</h3>
|
|
<ul>
|
|
{{ range $name, $taxonomy := .Site.Taxonomies.tags }}
|
|
<li><a href='{{ "/tags/" | relLangURL }}{{ $name | urlize }}'>{{ $name }}</a></li>
|
|
{{end}}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{{ end }}
|