diff options
author | Jesús <heckyel@hyperbola.info> | 2019-11-25 11:45:13 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2019-11-25 11:45:13 -0500 |
commit | a55e9898a08fd4c20ef6ab64081d71ff837967af (patch) | |
tree | 0576aa5896d504165215efb110d060751bb942d0 /cl-theme | |
parent | 327b0c10c83b6c3f4aac81d74bcfbe4116dd32f7 (diff) | |
download | cl-a55e9898a08fd4c20ef6ab64081d71ff837967af.tar.lz cl-a55e9898a08fd4c20ef6ab64081d71ff837967af.tar.xz cl-a55e9898a08fd4c20ef6ab64081d71ff837967af.zip |
improve description y page.html
Diffstat (limited to 'cl-theme')
-rw-r--r-- | cl-theme/templates/page.html | 6 |
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 }} – {{ 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 %} |