diff options
author | Jesús <heckyel@hyperbola.info> | 2019-11-25 00:28:16 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2019-11-25 00:28:16 -0500 |
commit | 327b0c10c83b6c3f4aac81d74bcfbe4116dd32f7 (patch) | |
tree | 5a2f9f0f1633cc940cb8c1d5c5ac287f6e1d0bac | |
parent | 2f7d137d2b570f0340ee7427a2a4731e73328cef (diff) | |
download | cl-327b0c10c83b6c3f4aac81d74bcfbe4116dd32f7.tar.lz cl-327b0c10c83b6c3f4aac81d74bcfbe4116dd32f7.tar.xz cl-327b0c10c83b6c3f4aac81d74bcfbe4116dd32f7.zip |
fix tag <meta property="og:site_name"> is missing
-rw-r--r-- | cl-theme/templates/index.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cl-theme/templates/index.html b/cl-theme/templates/index.html index bc1f217..407a7bc 100644 --- a/cl-theme/templates/index.html +++ b/cl-theme/templates/index.html @@ -18,7 +18,8 @@ <meta name="description" content="{{ SITE_DESCRIPTION }}"/> <!-- OpenGraph --> - <meta property="og:title" content="{{ SITENAME }}"/> + <meta property="og:title" content="{{ SITESUBTITLE }} - {{ SITENAME }}"/> + <meta property="og:site_name" content="{{ SITENAME }}"> <meta property="og:description" content="{{ SITE_DESCRIPTION }}"/> <meta property="og:url" content="{{ SITEURL }}"/> <meta property="og:image" content="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/favicon/cl-favicon-96x96.png"/> |