mirror of
https://github.com/Threnklyn/MinecraftChat.git
synced 2026-05-22 14:18:28 +02:00
31 lines
884 B
HTML
Executable File
31 lines
884 B
HTML
Executable File
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
|
|
<title>Minecraft Chat | AlexKvazos</title>
|
|
|
|
<!-- styles and fonts -->
|
|
<link href='http://fonts.googleapis.com/css?family=Source+Code+Pro' rel='stylesheet' type='text/css'>
|
|
<link rel="stylesheet" href="//bootswatch.com/cyborg/bootstrap.min.css">
|
|
<link rel="stylesheet" href="/css/style.css">
|
|
|
|
</head>
|
|
<body ng-app="chat">
|
|
|
|
|
|
<!-- main windows -->
|
|
<div ng-include="'templates/windows/nav.html'"></div>
|
|
<div ng-include="'templates/windows/chat.html'"></div>
|
|
|
|
|
|
<!-- scripts -->
|
|
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular.min.js"></script>
|
|
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
|
|
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
|
|
<script src="/lib/socket.io.js"></script>
|
|
<script src="/js/app.js"></script>
|
|
|
|
|
|
</body>
|
|
</html>
|