-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
62 lines (57 loc) · 2.86 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
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="">
<title>Expresso Voluntário - Início</title>
<!-- CSS IMPORTS -->
<link rel="stylesheet" href="bower_components/angular-material/angular-material.css">
<link rel="stylesheet" href="bower_components/pure/grids-min.css">
<link rel="stylesheet" href="bower_components/pure/grids-responsive-min.css">
<link rel="stylesheet" href="bower_components/material-design-icons/iconfont/material-icons.css">
<link rel="stylesheet" href="bower_components/animate.css/animate.min.css">
<link rel="stylesheet" href="app/assets-generated/css/main.css">
<!-- END CSS IMPORTS -->
</head>
<body ng-app="MyApp">
<!-- HEADER -->
<header class="expresso-header__wrapper pure-g">
<div class="expresso-container">
<div class="expresso-header animated fadeInDownBig">
<div class="pure-u-1-2 expresso-header__logo">
<h1><a>Expresso Voluntário</a></h1>
</div>
<div class="pure-u-1-2">
<expresso-menu></expresso-menu>
</div>
</div>
</div>
</header>
<!-- END HEADER -->
<!-- CONTENT -->
<main class="expresso-content__wrapper">
<div ui-view style="min-height: 100%; background-color: #2196f3;"></div>
</main>
<!-- END CONTENT -->
<!-- FOOTER -->
<footer class="expresso-footer__wrapper" ng-if="false">
<div class="expresso-container is-vertical-spacing">
</div>
</footer>
<!-- END FOOTER -->
<!-- JAVASCRIPT IMPORTS -->
<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/angular-aria/angular-aria.js"></script>
<script src="bower_components/angular-animate/angular-animate.js"></script>
<script src="bower_components/angular-resource/angular-resource.js"></script>
<script src="bower_components/angular-messages/angular-messages.js"></script>
<script src="bower_components/angular-cookies/angular-cookies.min.js"></script>
<script src="bower_components/angular-ui-router/release/angular-ui-router.js"></script>
<script src="bower_components/angular-material/angular-material.js"></script>
<script src="bower_components/angular-google-analytics/dist/angular-google-analytics.js"></script>
<script src="bower_components/lodash/dist/lodash.js"></script>
<script src="app/assets-generated/js/scripts.js"></script>
<!-- END JAVASCRIPT IMPORTS -->
</body>
</html>