Files
MinecraftChat/public/templates/index.html
T
2015-04-28 12:52:42 -05:00

42 lines
1.3 KiB
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>
<!-- google analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-43803735-2', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>