diff --git a/src/config.js b/src/config.js index 7803625..55540f4 100644 --- a/src/config.js +++ b/src/config.js @@ -1,7 +1,8 @@ const config = { stickerPacksDir: "stickerpacks", outDir: "", - homeserverUrl: "https://synapse.wah.su/__thumbnail/" + homeserverUrl: "https://synapse.wah.su/__thumbnail/", + baseUrl: "https://matrix.wah.su" }; module.exports = config \ No newline at end of file diff --git a/src/index.js b/src/index.js index e8fe6ac..9c0b11b 100644 --- a/src/index.js +++ b/src/index.js @@ -69,7 +69,9 @@ PackIndex.packs.forEach((pack) => { isDev, stickerset: packFile, page: "stickerset", + pagePath: `/${packFile.id}/`, homeserverUrl: config.homeserverUrl, + baseUrl: config.baseUrl }, { root: path.join(ParPath, "src/templates") } ); @@ -111,8 +113,10 @@ const html = ejs.render( isDev, stickerset: null, page: "index", + pagePath: "/", packs: Packs, homeserverUrl: config.homeserverUrl, + baseUrl: config.baseUrl }, { root: path.join(ParPath, "src/templates") } ); diff --git a/src/templates/Base.ejs b/src/templates/Base.ejs index c148b2e..87e0077 100644 --- a/src/templates/Base.ejs +++ b/src/templates/Base.ejs @@ -1,6 +1,6 @@ -<%- include('/components/Head', {title, description, image, path, isDev}); %> +<%- include('/components/Head', {title, description, image, path, isDev, pagePath}); %> <%- include("/components/Header", {path, stickerset}) %>
diff --git a/src/templates/components/Head.ejs b/src/templates/components/Head.ejs index 5bfebdd..4d13666 100644 --- a/src/templates/components/Head.ejs +++ b/src/templates/components/Head.ejs @@ -12,6 +12,8 @@ + + <% if (isDev) { %> diff --git a/static/images/logo-1x.png b/static/images/logo-1x.png new file mode 100644 index 0000000..ce344ea Binary files /dev/null and b/static/images/logo-1x.png differ