From e4a6f954c079e9f21d5d70f68c0a690237994070 Mon Sep 17 00:00:00 2001 From: generall Date: Tue, 26 Dec 2023 11:53:00 +0000 Subject: [PATCH] add subscribe confirmation page --- qdrant-landing/config.toml | 2 +- .../content/subscribe-confirmation/_index.md | 6 ++ .../subscribe-confirmation/baseof.html | 9 +++ .../layouts/subscribe-confirmation/list.html | 77 +++++++++++++++++++ .../subscribe-confirmation/single.html | 2 + 5 files changed, 95 insertions(+), 1 deletion(-) create mode 100644 qdrant-landing/content/subscribe-confirmation/_index.md create mode 100644 qdrant-landing/themes/qdrant/layouts/subscribe-confirmation/baseof.html create mode 100644 qdrant-landing/themes/qdrant/layouts/subscribe-confirmation/list.html create mode 100644 qdrant-landing/themes/qdrant/layouts/subscribe-confirmation/single.html diff --git a/qdrant-landing/config.toml b/qdrant-landing/config.toml index 7389e7d90..e0b160cd7 100644 --- a/qdrant-landing/config.toml +++ b/qdrant-landing/config.toml @@ -72,7 +72,7 @@ keywords = "search engine, vector database, neural network, matching, filter, Sa githubDocPrefix = "https://github.com/qdrant/landing_page/tree/master/qdrant-landing/content/" githubIssueLink = "https://github.com/qdrant/landing_page/issues/new/choose" - docVersion = "v1.6.x" + docVersion = "v1.7.x" cloudDocVersion = "v0.1.x" googleTagManager = "GTM-KRLCXD5" diff --git a/qdrant-landing/content/subscribe-confirmation/_index.md b/qdrant-landing/content/subscribe-confirmation/_index.md new file mode 100644 index 000000000..578b4cd97 --- /dev/null +++ b/qdrant-landing/content/subscribe-confirmation/_index.md @@ -0,0 +1,6 @@ +--- +title: Subscribe +section_title: Subscribe +subtitle: Subscribe +description: Subscribe +--- \ No newline at end of file diff --git a/qdrant-landing/themes/qdrant/layouts/subscribe-confirmation/baseof.html b/qdrant-landing/themes/qdrant/layouts/subscribe-confirmation/baseof.html new file mode 100644 index 000000000..7358f5c63 --- /dev/null +++ b/qdrant-landing/themes/qdrant/layouts/subscribe-confirmation/baseof.html @@ -0,0 +1,9 @@ +{{- partial "header.html" . -}} + +{{- partial "second_header.html" . -}} + +
+ {{ block "main" . }}{{ end }} +
+ +{{- partial "footer.html" . -}} \ No newline at end of file diff --git a/qdrant-landing/themes/qdrant/layouts/subscribe-confirmation/list.html b/qdrant-landing/themes/qdrant/layouts/subscribe-confirmation/list.html new file mode 100644 index 000000000..69ccdcbb6 --- /dev/null +++ b/qdrant-landing/themes/qdrant/layouts/subscribe-confirmation/list.html @@ -0,0 +1,77 @@ +{{ partial "header" . }} + + + + +
+
+
+ + +
+
+
+ +
+
+
+ + +
+
+

Thanks for subscribing!

+
Your subscription to our Newsletter has been confirmed.
+

You can unsubscribe at any time by clicking the link in the footer of our emails.

+

For information about our privacy practices, please visit our Privacy Policy page.

+
+
+ +
+
+
+ + + + + + + +{{ partial "footer" . }} \ No newline at end of file diff --git a/qdrant-landing/themes/qdrant/layouts/subscribe-confirmation/single.html b/qdrant-landing/themes/qdrant/layouts/subscribe-confirmation/single.html new file mode 100644 index 000000000..f319bf97c --- /dev/null +++ b/qdrant-landing/themes/qdrant/layouts/subscribe-confirmation/single.html @@ -0,0 +1,2 @@ +{{ define "main" }} +{{ end }} \ No newline at end of file