ClaptrapBot/src/main/resources/templates/index.html

40 lines
1.3 KiB
HTML
Raw Normal View History

2017-12-22 19:20:26 +01:00
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"/>
2018-05-14 09:29:55 +02:00
<title>Claptrap Bot</title>
<link rel="icon"
type="image/x-icon"
2018-02-16 14:18:28 +01:00
href="/favicon.png"/>
2017-12-22 19:20:26 +01:00
<!-- CSS -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"/>
2018-04-26 16:58:01 +02:00
<link href="css/materialize.css" type="text/css" rel="stylesheet" media="screen,projection"/>
<link href="css/style.css" type="text/css" rel="stylesheet" media="screen,projection"/>
2017-12-22 19:20:26 +01:00
</head>
<body class="blue-grey lighten-5" >
2018-02-16 14:18:28 +01:00
2018-05-14 11:57:05 +02:00
<div th:replace="header :: header ('home',${guild_name})">...</div>
2017-12-22 19:20:26 +01:00
<div class="section no-pad-bot main" id="index-banner">
<div class="center center-align">
<h2>Home Page</h2>
<h1>Coming Soon</h1>
2018-05-14 09:29:55 +02:00
<img src="/favicon.png" class="responsive-img"/>
</div>
2018-02-16 14:18:28 +01:00
2017-12-22 19:20:26 +01:00
</div>
2018-04-26 16:58:01 +02:00
<script>
var needLogin = true;
</script>
2017-12-22 19:20:26 +01:00
<!-- Scripts-->
2018-04-30 16:51:09 +02:00
<script th:src="@{/js/jquery-3.3.1.min.js}"></script>
2018-02-16 14:18:28 +01:00
<script th:src="@{/js/materialize.js}"></script>
<script th:src="@{/js/navabar.js}"></script>
<script th:src="@{/js/js.cookie.js}"></script>
2017-12-22 19:20:26 +01:00
</body>
</html>