From 6f864b437d6f43c1b30aadf1acad93f7b73e20f2 Mon Sep 17 00:00:00 2001 From: Arnab Kumar Shil Date: Sat, 29 Dec 2018 11:50:49 +0600 Subject: [PATCH] Add meta descriptions to document head (#19) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use Hugo‘s built in `schema.html` `opengraph.html` `twitter_cards.html` templates --- layouts/_default/baseof.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 906c32a..5f7e408 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -9,6 +9,9 @@ {{- end }} + {{ template "_internal/schema.html" . -}} + {{ template "_internal/opengraph.html" . -}} + {{ template "_internal/twitter_cards.html" . -}}