summaryrefslogtreecommitdiff
path: root/public/views
diff options
context:
space:
mode:
authorErik Michelson2019-10-08 21:11:01 +0200
committerErik Michelson2019-10-09 23:01:43 +0200
commitf26f48793fdf5bb81f4bec5d7c50e5fe1ba978d6 (patch)
tree44ca1460d545db17209314641e89566583d398eb /public/views
parent8f61d840de0ff1a40fbb61ce9e688d9372f9117e (diff)
Fixed bugs, added default image
Signed-off-by: Erik Michelson <erik@liltv.de>
Diffstat (limited to 'public/views')
-rw-r--r--public/views/codimd/head.ejs8
-rw-r--r--public/views/index/head.ejs4
-rw-r--r--public/views/pretty.ejs6
3 files changed, 12 insertions, 6 deletions
diff --git a/public/views/codimd/head.ejs b/public/views/codimd/head.ejs
index e2f0375c..934767f6 100644
--- a/public/views/codimd/head.ejs
+++ b/public/views/codimd/head.ejs
@@ -6,8 +6,12 @@
<meta name="mobile-web-app-capable" content="yes">
<% for (var og in opengraph) { %>
<% if (opengraph.hasOwnProperty(og) && opengraph[og].trim() !== '') { %>
-<meta property="og:<%= og %>" content="<%= opengraph[og] %>">
-<% }} %>
+<meta property="og:<%- og %>" content="<%- opengraph[og] %>">
+<% }} if (!opengraph.hasOwnProperty('image')) { %>
+<meta property="og:image" content="<%- serverURL %>/codimd-icon-1024.png">
+<meta property="og:image:alt" content="CodiMD logo">
+<meta property="og:image:type" content="image/png">
+<% } %>
<title><%= title %></title>
<link rel="icon" type="image/png" href="<%- serverURL %>/favicon.png">
<link rel="apple-touch-icon" href="<%- serverURL %>/apple-touch-icon.png">
diff --git a/public/views/index/head.ejs b/public/views/index/head.ejs
index 400e2e59..0f1e584e 100644
--- a/public/views/index/head.ejs
+++ b/public/views/index/head.ejs
@@ -9,12 +9,10 @@
<meta property="og:title" content="CodiMD - <%= __('Collaborative markdown notes') %>">
<meta property="og:description" content="<%= __('Best way to write and share your knowledge in markdown.') %>">
<meta property="og:type" content="website">
-<% if (serverURL !== "") { %>
<meta property="og:url" content="<%- serverURL %>">
-<meta property="og:image" content="<%- serverURL %>/favicon.png">
+<meta property="og:image" content="<%- serverURL %>/codimd-icon-1024.png">
<meta property="og:image:alt" content="CodiMD logo">
<meta property="og:image:type" content="image/png">
-<% } %>
<title>CodiMD - <%= __('Collaborative markdown notes') %></title>
<link rel="icon" type="image/png" href="<%- serverURL %>/favicon.png">
<link rel="apple-touch-icon" href="<%- serverURL %>/apple-touch-icon.png">
diff --git a/public/views/pretty.ejs b/public/views/pretty.ejs
index 5f18ea8b..20bb44e3 100644
--- a/public/views/pretty.ejs
+++ b/public/views/pretty.ejs
@@ -17,7 +17,11 @@
<% for (var og in opengraph) { %>
<% if (opengraph.hasOwnProperty(og) && opengraph[og].trim() !== '') { %>
<meta property="og:<%= og %>" content="<%= opengraph[og] %>">
- <% }} %>
+ <% }} if (!opengraph.hasOwnProperty('image')) { %>
+ <meta property="og:image" content="<%- serverURL %>/codimd-icon-1024.png">
+ <meta property="og:image:alt" content="CodiMD logo">
+ <meta property="og:image:type" content="image/png">
+ <% } %>
<title><%= title %></title>
<link rel="icon" type="image/png" href="<%- serverURL %>/favicon.png">
<link rel="apple-touch-icon" href="<%- serverURL %>/apple-touch-icon.png">