Start work on calendar embed...

This commit is contained in:
NovaFox161
2018-03-21 11:22:36 -05:00
parent 1b4a0756a3
commit a5ed55e7a3
@@ -0,0 +1,49 @@
<!DOCTYPE HTML>
<!--suppress HtmlUnknownTarget -->
<html xmlns:th="http://www.thymeleaf.org">
<head>
<!--Meta stuffs-->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="DisCal is a bot that implements Google Calendar seamlessly into Discord">
<meta property="og:title" content="DisCal Bot"/>
<meta property="og:url" content="https://discalbot.com"/>
<meta property="og:description"
content="DisCal is a bot that implements Google Calendar seamlessly into Discord"/>
<!--meta property="og:image" content="I WILL PUT THE LOGO IN WHEN I MAKE IT SMALL"/-->
<title>Calendar - DisCal</title>
<!--Locally hosted-->
<link href="/styles/global.css" rel="stylesheet">
</head>
<body>
<div class="top-nav">
<h1>DISCAL</h1>
<a href="/">Home</a>
<a href="/about">About</a>
<a href="/commands">Commands</a>
<a href="/setup">Setup</a>
<a href="/lazy-discal">Lazy DisCal</a>
<a href="/dashboard">Dashboard</a>
<a href="https://discord.gg/AmAMGeN" target="_blank">Support</a>
<a href="https://www.patreon.com/Novafox" target="_blank">Patreon</a>
<a class="account" th:if="${loggedIn}" href="/account/logout">Log out</a>
<a class="account" th:unless="${loggedIn}"
th:href="'https://discordapp.com/oauth2/authorize?client_id=' + ${client} + '&scope=guilds+identify&permissions=0&response_type=code&redirect_uri=' + ${redirUri}">Log
In</a>
</div>
<div id="content">
</div>
</body>
<footer id="footer">
<p><span th:text="'© Nova Maday ' + ${year} + ' All rights reserved.'"></span><span> - </span><a
href="/policy/privacy">Privacy
Policy</a><span> - </span><a href="/docs/api/overview">Developer API</a></p>
</footer>
</html>