-
-
\ No newline at end of file
diff --git a/qdrant-landing/config.toml b/qdrant-landing/config.toml
index fe08d8ef7..0c7fd4a40 100644
--- a/qdrant-landing/config.toml
+++ b/qdrant-landing/config.toml
@@ -26,6 +26,7 @@ keywords = "search engine, neural network, matching, filter, SaaS, approximate n
logo = "/images/logo_small_with_text.png"
logo_width = "192"
+ share_preview_img = "/images/logo_with_text.svg"
github = "https://github.com/qdrant/qdrant"
quick_start = "https://github.com/qdrant/qdrant/blob/master/QUICK_START.md"
@@ -51,6 +52,10 @@ keywords = "search engine, neural network, matching, filter, SaaS, approximate n
googleTagManager = "GTM-KRLCXD5"
+[taxonomies]
+ tag = "tags"
+ category = "categories"
+ example = "examples"
[menu]
@@ -85,5 +90,11 @@ keywords = "search engine, neural network, matching, filter, SaaS, approximate n
weight = -70
url = "/articles"
+ [[menu.main]]
+ identifier = "blog"
+ name = "Blog"
+ weight = -60
+ url = "/blog/"
+
[markup.goldmark.renderer]
unsafe= true
diff --git a/qdrant-landing/content/blog/_index.md b/qdrant-landing/content/blog/_index.md
new file mode 100644
index 000000000..18f84384b
--- /dev/null
+++ b/qdrant-landing/content/blog/_index.md
@@ -0,0 +1,5 @@
+---
+title: Blog
+section_title: Our Blog
+subtitle: Check out our latest posts
+---
\ No newline at end of file
diff --git a/qdrant-landing/content/blog/qdrant-v-0-6-0-engine-with-grpc-released.md b/qdrant-landing/content/blog/qdrant-v-0-6-0-engine-with-grpc-released.md
new file mode 100644
index 000000000..1a64a7c27
--- /dev/null
+++ b/qdrant-landing/content/blog/qdrant-v-0-6-0-engine-with-grpc-released.md
@@ -0,0 +1,34 @@
+---
+title: Qdrant v0.6.0 engine with gRPC interface has been released
+short_description: We’ve released a new engine, version 0.6.0.
+description: We’ve released a new engine, version 0.6.0. The main feature of the release in the gRPC interface.
+preview_image: /blog_data/qdrant-v-0-6-0-engine-with-grpc-released/upload_time.png
+weight: 20
+category: main
+date: 2022-03-10T01:36:43+03:00
+author: Alyona Kavyerina
+author_link: https://medium.com/@alyona.kavyerina
+featured: true
+categories:
+- News
+tags:
+- gRPC
+- release
+---
+We’ve released a new engine, version 0.6.0.
+
+The main feature of the release in the gRPC interface — it is much faster than the REST API and ensures higher app performance due to the following features:
+
+ - re-use of connection;
+ - binarity protocol;
+ - separation schema from data.
+
+This results in 3 times faster data uploading on our benchmarks:
+
+
+
+Read more about the gRPC interface and whether you should use it by this [link](https://qdrant.tech/documentation/quick_start/#grpc).
+
+The release v0.6.0 includes several bug fixes. More information is available in a [changelog](https://github.com/qdrant/qdrant/releases/tag/v0.6.0).
+
+New version was provided in addition to the REST API that the company keeps supporting due to its easy debugging.
\ No newline at end of file
diff --git a/qdrant-landing/static/blog_data/qdrant-v-0-6-0-engine-with-grpc-released/upload_time.png b/qdrant-landing/static/blog_data/qdrant-v-0-6-0-engine-with-grpc-released/upload_time.png
new file mode 100644
index 000000000..70c58c52d
Binary files /dev/null and b/qdrant-landing/static/blog_data/qdrant-v-0-6-0-engine-with-grpc-released/upload_time.png differ
diff --git a/qdrant-landing/themes/qdrant/layouts/_default/taxonomy.html b/qdrant-landing/themes/qdrant/layouts/_default/taxonomy.html
new file mode 100644
index 000000000..18acc347f
--- /dev/null
+++ b/qdrant-landing/themes/qdrant/layouts/_default/taxonomy.html
@@ -0,0 +1,23 @@
+{{ define "main" }}
+
+
+ {{ partial "blog-sidebar" . }}
+
+
+
Categories
+
+ {{ range $name, $taxonomy := .Site.Taxonomies.categories }}
+
+
+{{- partial "footer.html" . -}}
\ No newline at end of file
diff --git a/qdrant-landing/themes/qdrant/layouts/blog/list.html b/qdrant-landing/themes/qdrant/layouts/blog/list.html
new file mode 100644
index 000000000..d33ee9b85
--- /dev/null
+++ b/qdrant-landing/themes/qdrant/layouts/blog/list.html
@@ -0,0 +1,3 @@
+{{ define "main" }}
+ {{ partial "sidebar-list" . }}
+{{ end }}
\ No newline at end of file
diff --git a/qdrant-landing/themes/qdrant/layouts/blog/single.html b/qdrant-landing/themes/qdrant/layouts/blog/single.html
new file mode 100644
index 000000000..c8eaa4fba
--- /dev/null
+++ b/qdrant-landing/themes/qdrant/layouts/blog/single.html
@@ -0,0 +1,15 @@
+{{ define "main" }}
+
+
+
+
+ {{ partial "blog-sidebar" . }}
+
+
+
+ {{ partial "blogpost" .}}
+
+
+
+
+{{ end }}
\ No newline at end of file
diff --git a/qdrant-landing/themes/qdrant/layouts/partials/blog-sidebar.html b/qdrant-landing/themes/qdrant/layouts/partials/blog-sidebar.html
new file mode 100644
index 000000000..852062105
--- /dev/null
+++ b/qdrant-landing/themes/qdrant/layouts/partials/blog-sidebar.html
@@ -0,0 +1,61 @@
+
+
+
+
\ No newline at end of file
diff --git a/qdrant-landing/themes/qdrant/layouts/partials/blogpost.html b/qdrant-landing/themes/qdrant/layouts/partials/blogpost.html
new file mode 100644
index 000000000..5aad815b0
--- /dev/null
+++ b/qdrant-landing/themes/qdrant/layouts/partials/blogpost.html
@@ -0,0 +1,65 @@
+
+{{ $link := .Permalink }}
+{{ if .Params.external_link }}
+{{ $link = .Params.external_link }}
+{{ end }}
+
+