This repository has been archived on 2025-06-26. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
l1l1th-old/src/server/partials/head.ejs
2024-10-15 15:22:45 +02:00

8 lines
No EOL
590 B
Text

<head><% invite = `https://discord.com/oauth2/authorize?client_id=${bot.user.id}&scope=applications.commands&integration_type=` %>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"><% for(let i = 16; i <= 512; i*=2) { %>
<link rel="shortcut icon" href="<%- bot.user.avatarURL({ size: i, forceStatic: true }) %>" sizes="<%-i%>x<%-i%>"><% } %>
<title><%- (typeof(title) != "undefined" ? title : bot.user.username) %></title>
<link rel="stylesheet" href="/bs/css/bootstrap.min.css">
<script src="/bs/js/bootstrap.min.js"></script>
</head>