-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (29 loc) · 819 Bytes
/
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
<!DOCTYPE html>
<html lang="en" ng-app="fmApp">
<head>
<meta charset="UTF-8">
<title>FlickrMaps</title>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<header class="primary-header">
<h1 class="site-title">Flickr and Maps</h1>
<div class="header-icons">
<i class="fa fa-flickr"></i>
<i class="fa fa-map-marker"></i>
</div>
</header>
<main ng-view></main>
<footer class="primary-footer">
<h4>©</h4>
<nav class="social-media-nav">
<i class="fa fa-facebook-square"></i>
<i class="fa fa-twitter-square"></i>
<i class="fa fa-instagram"></i>
<i class="fa fa-google-plus-square"></i>
</nav>
</footer>
<script src="bower_components/oauth-js/dist/oauth.min.js"></script>
<script src="build/bundle.js"></script>
</body>
</html>