diff options
Diffstat (limited to 'cl-theme/templates/page.html')
-rw-r--r-- | cl-theme/templates/page.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/cl-theme/templates/page.html b/cl-theme/templates/page.html index f1da390..31e8bf0 100644 --- a/cl-theme/templates/page.html +++ b/cl-theme/templates/page.html @@ -25,21 +25,21 @@ {% endif %} {% block seo %} <!-- Meta Page --> - <meta name="description" content="{{ SITENAME }} – {{ SITESUBTITLE }}"> - <meta name="author" content="{{ page.author }}"> + <meta name="description" content="{{ SITENAME }} – {{ SITESUBTITLE }}"/> + <meta name="author" content="{{ page.author }}"/> <!-- OpenGraph --> <meta property="og:type" content="article"/> <meta property="og:title" content="{{ page.title }}"/> <meta property="og:description" content="{{ SITESUBTITLE }}"/> - <meta property="og:site_name" content="{{ SITENAME }}" /> + <meta property="og:site_name" content="{{ SITENAME }}"/> <meta property="og:url" content="{{ SITEURL }}/{{ page.url }}"/> <!-- Twitter --> - <meta name="twitter:card" content="summary"> - <meta name="twitter:title" content="{{ page.title }}"> - <meta name="twitter:description" content="{{ SITESUBTITLE }}"> - <meta name="twitter:url" content="{{ SITEURL }}/{{ page.url }}"> + <meta name="twitter:card" content="summary"/> + <meta name="twitter:title" content="{{ page.title }}"/> + <meta name="twitter:description" content="{{ SITESUBTITLE }}"/> + <meta name="twitter:url" content="{{ SITEURL }}/{{ page.url }}"/> {% endblock %} {% endblock %} |