From d75464dd7723a99ab9228ea7d09ff8660e40f54d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benedikt=20R=C3=B6tsch?= Date: Fri, 6 Oct 2017 16:55:30 +0200 Subject: [PATCH] fix(markup): fix og:title --- views/layout.pug | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/layout.pug b/views/layout.pug index a6f907d..2caedde 100644 --- a/views/layout.pug +++ b/views/layout.pug @@ -6,7 +6,7 @@ html meta(name='viewport' content='width=device-width, initial-scale=1') meta(name='description' content='This is The Example App, an application built to serve you as a reference while building your own applications using Contentful.') meta(name='twitter:card' value='This is The Example App, an application built to serve you as a reference while building your own applications using Contentful.') - meta(property='og:title' content='Title Here') + meta(property='og:title' content=title) meta(property='og:type' content='article') meta(property='og:url' content='http://contentful-example-app.herokuapp.com/') meta(property='og:image' content='http://contentful-example-app.herokuapp.com/images/logo.svg')