add missing og tags

This commit is contained in:
Kentai Radiquum 2025-01-23 23:47:53 +05:00
parent 0fe46c54d3
commit 728ca46595
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
5 changed files with 9 additions and 2 deletions

View file

@ -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

View file

@ -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") }
); );

View file

@ -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>

View file

@ -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

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB