-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
51 lines (33 loc) · 1.16 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html ng-app="app">
<head>
<title>GDG Ciudad del Este</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- bower:css -->
<link rel="stylesheet" href="bower_components/materialize/bin/materialize.css" />
<!-- endbower -->
<!-- bower:js -->
<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="bower_components/materialize/bin/materialize.js"></script>
<script src="bower_components/angular-route/angular-route.js"></script>
<!-- endbower -->
<!-- inject:css -->
<link rel="stylesheet" href="/css/main.css">
<!-- endinject -->
<!-- inject:js -->
<script src="/js/app.js"></script>
<script src="/js/event/event.js"></script>
<script src="/js/routes/routes.js"></script>
<script src="/js/user/user.js"></script>
<!-- endinject -->
</head>
<body class="container">
<h1>GDG Ciudad del Este</h1>
<nav-route></nav-route>
<div class="container">
<div ng-view></div>
</div>
</body>
</html>