From d223822e9b6ee55154be42fbb2a1c7cfec04e81c Mon Sep 17 00:00:00 2001 From: Montana Low Date: Thu, 1 Sep 2022 09:08:28 -0700 Subject: [PATCH 1/2] add open graph meta tags --- .../postgres-full-text-search-is-awesome.md | 8 +++++ pgml-docs/overrides/main.html | 32 +++++++++++++++++++ 2 files changed, 40 insertions(+) diff --git a/pgml-docs/docs/blog/postgres-full-text-search-is-awesome.md b/pgml-docs/docs/blog/postgres-full-text-search-is-awesome.md index 0d5f9c059..af95dd334 100644 --- a/pgml-docs/docs/blog/postgres-full-text-search-is-awesome.md +++ b/pgml-docs/docs/blog/postgres-full-text-search-is-awesome.md @@ -1,3 +1,11 @@ +--- +author: Montana Low +description: If you want to improve your search results, don't rely on expensive O(n*m) word frequency statistics. Get new sources of data instead. It's the relational nature of relevance that underpins why a relational database forms the ideal search engine. +image: https://postgresml.org/blog/images/delorean.jpg +image_alt: We were promised flying cars +--- + +

Postgres Full Text Search is Awesome!

diff --git a/pgml-docs/overrides/main.html b/pgml-docs/overrides/main.html index ed8e75014..9aca09265 100644 --- a/pgml-docs/overrides/main.html +++ b/pgml-docs/overrides/main.html @@ -4,6 +4,38 @@ PostgresML {%- endblock %} +{% block site_meta %} +{{ super() }} + +{% if page.meta and page.meta.title %} + +{% elif page.title %} + +{% endif %} +{% if page.meta and page.meta.type %} + +{% endif %} +{% if page.meta and page.meta.description %} + +{% elif config.site_description %} + +{% endif %} +{% if page.meta and page.meta.author %} + +{% endif %} +{% if page.meta and page.meta.image %} + +{% endif %} +{% if page.meta and page.meta.image_alt %} + +{% endif %} +{% if page.meta and page.meta.type %} + +{% else %} + +{% endif %} +{% endblock %} + {%- block content %} {{ super() }} From 60ea6cb53aa4d9c9726ce3fa04ec2a7ef0bc0001 Mon Sep 17 00:00:00 2001 From: Montana Low Date: Thu, 1 Sep 2022 09:10:54 -0700 Subject: [PATCH 2/2] first post --- pgml-docs/docs/blog/data-is-living-and-relational.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pgml-docs/docs/blog/data-is-living-and-relational.md b/pgml-docs/docs/blog/data-is-living-and-relational.md index b94dc55a6..bfab4f9a1 100644 --- a/pgml-docs/docs/blog/data-is-living-and-relational.md +++ b/pgml-docs/docs/blog/data-is-living-and-relational.md @@ -1,3 +1,11 @@ +--- +author: Montana Low +description: A common problem with data science and machine learning tutorials is the published and studied datasets are often nothing like what you’ll find in industry. +image: https://postgresml.org/images/illustrations/uml.png +image_alt: Data is relational and growing in multiple dimensions +--- + +