Visual improvements.

This commit is contained in:
Cameron Redmore 2025-02-15 13:47:42 +00:00
parent 007f775f8b
commit d0e6ad2c8e
3 changed files with 60 additions and 17 deletions

View file

@ -167,6 +167,7 @@ fastify.get('/s/:date/:filename', async (request, reply) => {
.replaceAll('{{ogTags}}', ogTags)
.replaceAll('{{filename}}', filename)
.replaceAll('{{joinedPath}}', joinedPath)
.replaceAll('{{siteName}}', process.env.SITE_NAME || 'CamDN')
reply.code(200).header('Content-Type', 'text/html').send(html)