mirror of
https://git.arson.gg/lilith/discord-bot.git
synced 2025-12-05 03:34:49 +01:00
14 lines
No EOL
980 B
Text
14 lines
No EOL
980 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>
|
|
|
|
<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> |