mirror of
https://github.com/Threnklyn/MinecraftChat.git
synced 2026-06-01 18:58:27 +02:00
Used browserify for clientside js
This commit is contained in:
Executable
+30
@@ -0,0 +1,30 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user