vod frog, frog with the vods
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

add opengraph image and meta tags

+12 -3
+2 -2
.svelte-kit/generated/server/internal.js
··· 22 22 service_worker_options: undefined, 23 23 server_error_boundaries: false, 24 24 templates: { 25 - app: ({ head, body, assets, nonce, env }) => "<!doctype html>\n<html lang=\"en\">\n <head>\n <meta charset=\"utf-8\" />\n <link rel=\"icon\" href=\"/frogicon.png\" />\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n <title>vod frog</title>\n " + head + "\n </head>\n <body>\n <div style=\"display: contents\">" + body + "</div>\n </body>\n</html>\n", 25 + app: ({ head, body, assets, nonce, env }) => "<!doctype html>\n<html lang=\"en\">\n <head>\n <meta charset=\"utf-8\" />\n <link rel=\"icon\" href=\"/frogicon.png\" />\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n <meta property=\"og:title\" content=\"vod frog\" />\n <meta property=\"og:description\" content=\"vod frog, i put the vods on a frog\" />\n <meta property=\"og:image\" content=\"/opengraph.png\" />\n <meta property=\"og:type\" content=\"website\" />\n <meta name=\"twitter:card\" content=\"summary_large_image\" />\n <meta name=\"twitter:title\" content=\"vod frog\" />\n <meta name=\"twitter:description\" content=\"vod frog, i put the vods on a frog\" />\n <meta name=\"twitter:image\" content=\"/opengraph.png\" />\n <meta name=\"description\" content=\"vod frog, i put the vods on a frog\" />\n <title>vod frog 🐸</title>\n " + head + "\n </head>\n <body>\n <div style=\"display: contents\">" + body + "</div>\n </body>\n</html>\n", 26 26 error: ({ status, message }) => "<!doctype html>\n<html lang=\"en\">\n\t<head>\n\t\t<meta charset=\"utf-8\" />\n\t\t<title>" + message + "</title>\n\n\t\t<style>\n\t\t\tbody {\n\t\t\t\t--bg: white;\n\t\t\t\t--fg: #222;\n\t\t\t\t--divider: #ccc;\n\t\t\t\tbackground: var(--bg);\n\t\t\t\tcolor: var(--fg);\n\t\t\t\tfont-family:\n\t\t\t\t\tsystem-ui,\n\t\t\t\t\t-apple-system,\n\t\t\t\t\tBlinkMacSystemFont,\n\t\t\t\t\t'Segoe UI',\n\t\t\t\t\tRoboto,\n\t\t\t\t\tOxygen,\n\t\t\t\t\tUbuntu,\n\t\t\t\t\tCantarell,\n\t\t\t\t\t'Open Sans',\n\t\t\t\t\t'Helvetica Neue',\n\t\t\t\t\tsans-serif;\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t\tjustify-content: center;\n\t\t\t\theight: 100vh;\n\t\t\t\tmargin: 0;\n\t\t\t}\n\n\t\t\t.error {\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t\tmax-width: 32rem;\n\t\t\t\tmargin: 0 1rem;\n\t\t\t}\n\n\t\t\t.status {\n\t\t\t\tfont-weight: 200;\n\t\t\t\tfont-size: 3rem;\n\t\t\t\tline-height: 1;\n\t\t\t\tposition: relative;\n\t\t\t\ttop: -0.05rem;\n\t\t\t}\n\n\t\t\t.message {\n\t\t\t\tborder-left: 1px solid var(--divider);\n\t\t\t\tpadding: 0 0 0 1rem;\n\t\t\t\tmargin: 0 0 0 1rem;\n\t\t\t\tmin-height: 2.5rem;\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t}\n\n\t\t\t.message h1 {\n\t\t\t\tfont-weight: 400;\n\t\t\t\tfont-size: 1em;\n\t\t\t\tmargin: 0;\n\t\t\t}\n\n\t\t\t@media (prefers-color-scheme: dark) {\n\t\t\t\tbody {\n\t\t\t\t\t--bg: #222;\n\t\t\t\t\t--fg: #ddd;\n\t\t\t\t\t--divider: #666;\n\t\t\t\t}\n\t\t\t}\n\t\t</style>\n\t</head>\n\t<body>\n\t\t<div class=\"error\">\n\t\t\t<span class=\"status\">" + status + "</span>\n\t\t\t<div class=\"message\">\n\t\t\t\t<h1>" + message + "</h1>\n\t\t\t</div>\n\t\t</div>\n\t</body>\n</html>\n" 27 27 }, 28 - version_hash: "lq47rm" 28 + version_hash: "139m7hs" 29 29 }; 30 30 31 31 export async function get_hooks() {
spec/opengraph.png

This is a binary file and will not be displayed.

+10 -1
src/app.html
··· 4 4 <meta charset="utf-8" /> 5 5 <link rel="icon" href="/frogicon.png" /> 6 6 <meta name="viewport" content="width=device-width, initial-scale=1" /> 7 - <title>vod frog</title> 7 + <meta property="og:title" content="vod frog" /> 8 + <meta property="og:description" content="vod frog, i put the vods on a frog" /> 9 + <meta property="og:image" content="/opengraph.png" /> 10 + <meta property="og:type" content="website" /> 11 + <meta name="twitter:card" content="summary_large_image" /> 12 + <meta name="twitter:title" content="vod frog" /> 13 + <meta name="twitter:description" content="vod frog, i put the vods on a frog" /> 14 + <meta name="twitter:image" content="/opengraph.png" /> 15 + <meta name="description" content="vod frog, i put the vods on a frog" /> 16 + <title>vod frog 🐸</title> 8 17 %sveltekit.head% 9 18 </head> 10 19 <body>
static/opengraph.png

This is a binary file and will not be displayed.