mirror of
https://git.arson.gg/lilith/discord-bot.git
synced 2025-12-05 03:34:49 +01:00
what the helk!?
This commit is contained in:
parent
7c210ee7a6
commit
bfb14f4b15
14 changed files with 771 additions and 3 deletions
14
src/server/partials/head.ejs
Normal file
14
src/server/partials/head.ejs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<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>
|
||||
|
||||
<meta property="og:title" content="<%- (typeof(title) != "undefined" ? title : bot.user.username) %>" />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:image" content="<%- bot.user.avatarURL() %>" />
|
||||
<meta property="og:description" content="<%- (typeof(description)!="undefined"?description:"A Discord Bot") %>" />
|
||||
<meta name="theme-color" content="#cba6f7" />
|
||||
</head>
|
||||
Loading…
Add table
Add a link
Reference in a new issue