mirror of
https://github.com/wah-su/mstickers.git
synced 2025-04-05 15:54:36 +00:00
add missing og tags
This commit is contained in:
parent
0fe46c54d3
commit
728ca46595
5 changed files with 9 additions and 2 deletions
|
@ -1,7 +1,8 @@
|
||||||
const config = {
|
const config = {
|
||||||
stickerPacksDir: "stickerpacks",
|
stickerPacksDir: "stickerpacks",
|
||||||
outDir: "",
|
outDir: "",
|
||||||
homeserverUrl: "https://synapse.wah.su/__thumbnail/"
|
homeserverUrl: "https://synapse.wah.su/__thumbnail/",
|
||||||
|
baseUrl: "https://matrix.wah.su"
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports = config
|
module.exports = config
|
|
@ -69,7 +69,9 @@ PackIndex.packs.forEach((pack) => {
|
||||||
isDev,
|
isDev,
|
||||||
stickerset: packFile,
|
stickerset: packFile,
|
||||||
page: "stickerset",
|
page: "stickerset",
|
||||||
|
pagePath: `/${packFile.id}/`,
|
||||||
homeserverUrl: config.homeserverUrl,
|
homeserverUrl: config.homeserverUrl,
|
||||||
|
baseUrl: config.baseUrl
|
||||||
},
|
},
|
||||||
{ root: path.join(ParPath, "src/templates") }
|
{ root: path.join(ParPath, "src/templates") }
|
||||||
);
|
);
|
||||||
|
@ -111,8 +113,10 @@ const html = ejs.render(
|
||||||
isDev,
|
isDev,
|
||||||
stickerset: null,
|
stickerset: null,
|
||||||
page: "index",
|
page: "index",
|
||||||
|
pagePath: "/",
|
||||||
packs: Packs,
|
packs: Packs,
|
||||||
homeserverUrl: config.homeserverUrl,
|
homeserverUrl: config.homeserverUrl,
|
||||||
|
baseUrl: config.baseUrl
|
||||||
},
|
},
|
||||||
{ root: path.join(ParPath, "src/templates") }
|
{ root: path.join(ParPath, "src/templates") }
|
||||||
);
|
);
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<%- include('/components/Head', {title, description, image, path, isDev}); %>
|
<%- include('/components/Head', {title, description, image, path, isDev, pagePath}); %>
|
||||||
<body class="overflow-x-hidden text-white">
|
<body class="overflow-x-hidden text-white">
|
||||||
<%- include("/components/Header", {path, stickerset}) %>
|
<%- include("/components/Header", {path, stickerset}) %>
|
||||||
<div class="fixed inset-0 min-h-screen -z-10 tiledBackground"></div>
|
<div class="fixed inset-0 min-h-screen -z-10 tiledBackground"></div>
|
||||||
|
|
|
@ -12,6 +12,8 @@
|
||||||
<meta property="og:image:height" content="<%= image.h %>" />
|
<meta property="og:image:height" content="<%= image.h %>" />
|
||||||
<meta property="og:image:alt" content="<%= image.alt %>" />
|
<meta property="og:image:alt" content="<%= image.alt %>" />
|
||||||
<link href="<%= path %>/static/tailwind.css" rel="stylesheet">
|
<link href="<%= path %>/static/tailwind.css" rel="stylesheet">
|
||||||
|
<meta property="og:url" content="<%- baseUrl %><%= path %><%- pagePath %>" />
|
||||||
|
<meta property="og:logo" content="<%- baseUrl %><%= path %>/static/images/logo-1x.png" />
|
||||||
<% if (isDev) { %>
|
<% if (isDev) { %>
|
||||||
<!-- The following was injected by watch.js script, because we are in a dev mode -->
|
<!-- The following was injected by watch.js script, because we are in a dev mode -->
|
||||||
<script src="/src/hotreload.js"></script>
|
<script src="/src/hotreload.js"></script>
|
||||||
|
|
BIN
static/images/logo-1x.png
Normal file
BIN
static/images/logo-1x.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 14 KiB |
Loading…
Add table
Reference in a new issue