aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cl-theme/templates/page.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/cl-theme/templates/page.html b/cl-theme/templates/page.html
index 0f74eec..4170e3a 100644
--- a/cl-theme/templates/page.html
+++ b/cl-theme/templates/page.html
@@ -25,20 +25,20 @@
{% endif %}
{% block seo %}
<!-- Meta Page -->
- <meta name="description" content="{{ SITENAME }} &ndash; {{ SITESUBTITLE }}"/>
+ <meta name="description" content="{{ page.title }} - {{ SITENAME }}"/>
<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:description" content="{{ page.title }} - {{ 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:description" content="{{ page.title }} - {{ SITENAME }}"/>
<meta name="twitter:url" content="{{ SITEURL }}/{{ page.url }}"/>
{% endblock %}
{% endblock %}