Browse Source

Add instagram view

Camila 2 years ago
parent
commit
648533649c
1 changed files with 141 additions and 0 deletions
  1. 141
    0
      app_template/www/instagram.html

+ 141
- 0
app_template/www/instagram.html View File

@@ -0,0 +1,141 @@
1
+
2
+<!DOCTYPE html>
3
+<!--[if lt IE 7]>      <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
4
+<!--[if IE 7]>         <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
5
+<!--[if IE 8]>         <html class="no-js lt-ie9"> <![endif]-->
6
+<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
7
+	<head>
8
+	<meta charset="utf-8">
9
+	<meta http-equiv="X-UA-Compatible" content="IE=edge">
10
+	<title>dato.pr</title>
11
+	<meta name="viewport" content="width=device-width, initial-scale=1">
12
+	<meta name="description" content="No" />
13
+
14
+  	<!-- Facebook and Twitter integration -->
15
+	<meta property="og:title" content=""/>
16
+	<meta property="og:image" content=""/>
17
+	<meta property="og:url" content=""/>
18
+	<meta property="og:site_name" content=""/>
19
+	<meta property="og:description" content=""/>
20
+	<meta name="twitter:title" content="" />
21
+	<meta name="twitter:image" content="" />
22
+	<meta name="twitter:url" content="" />
23
+	<meta name="twitter:card" content="" />
24
+
25
+	<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
26
+	<link rel="shortcut icon" href="favicon.ico">
27
+
28
+	<link href="https://fonts.googleapis.com/css?family=Inconsolata:400,700" rel="stylesheet">
29
+
30
+	<!-- Animate.css -->
31
+	<link rel="stylesheet" href="css/animate.css">
32
+	<!-- Icomoon Icon Fonts-->
33
+	<link rel="stylesheet" href="css/icomoon.css">
34
+	<!-- Simple Line Icons -->
35
+	<link rel="stylesheet" href="css/simple-line-icons.css">
36
+	<!-- Bootstrap  -->
37
+	<link rel="stylesheet" href="css/bootstrap.css">
38
+	<!-- Style -->
39
+	<link rel="stylesheet" href="css/style.css">
40
+	<link rel="stylesheet" href="css/fancy.css">
41
+	<!-- Spotify Icon -->
42
+	<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
43
+<style type="text/css">
44
+h3 {text-align: center;}
45
+</style>
46
+
47
+
48
+	<!-- Modernizr JS -->
49
+	<script src="js/modernizr-2.6.2.min.js"></script>
50
+	<!-- FOR IE9 below -->
51
+	<!--[if lt IE 9]>
52
+	<script src="js/respond.min.js"></script>
53
+	<![endif]-->
54
+
55
+	</head>
56
+	<body>
57
+	<header role="banner" id="fh5co-header">
58
+		<div class="fluid-container">
59
+			<nav class="navbar navbar-default navbar-fixed-top js-fullheight">
60
+				<div id="navbar" class="navbar-collapse js-fullheight">
61
+					<ul class="nav navbar-nav navbar-left">
62
+						<li class="active"><a href="#" data-nav-section="home"><span>Home</span></a></li>
63
+						<li><a href="#" data-nav-section="services"><span>Services</span></a></li>
64
+					</ul>
65
+				</div>
66
+			</nav>
67
+	  </div>
68
+	</header>
69
+
70
+	<section id="fh5co-home" data-section="home" style="background-image: url(images/project-5.jpg);">
71
+		<div class="gradient"></div>
72
+		<div class="container">
73
+			<div class="text-wrap">
74
+				<div class="text-inner">
75
+					<div class="row">
76
+						<div class="col-md-8 col-md-offset-2 text-center">
77
+							<h1 style="color :white;" class="to-animate">dato.pr</h1>
78
+							<h2 style="color :white;" class="to-animate">"Estudiando lo ambiguo <br> e investigando lo desconocido."</h2>
79
+						</div>
80
+					</div>
81
+				</div>
82
+			</div>
83
+		</div>
84
+	</section>
85
+
86
+  <section id="fh5co-services" data-section="instagram">
87
+    <div class="container">
88
+      <style type="text/css">
89
+          a img{
90
+            align-items: center;
91
+            position: relative;
92
+            width: 30%;
93
+            padding: 10px;
94
+            padding-left: 10px;
95
+            margin-top: 20px;
96
+            overflow: hidden;
97
+            opacity: 0;
98
+            animation-name: fadeIn;
99
+            animation-delay: 0.6s;
100
+            animation-duration: 0.8s;
101
+            animation-fill-mode: forwards;
102
+            text-decoration: none;
103
+            color: white;
104
+          }
105
+      </style>
106
+      <h1 style="text-align: center">Instagram Feed</h1>
107
+      <div id="instafeed-container"></div>
108
+      <script src="https://cdn.jsdelivr.net/gh/stevenschobert/instafeed.js@2.0.0rc1/src/instafeed.min.js"></script>
109
+      <script type="text/javascript">
110
+        var userFeed = new Instafeed({
111
+          get: 'user',
112
+          target: "instafeed-container",
113
+            resolution: 'low_resolution',
114
+            limit: 9,
115
+          accessToken: 'IGQVJVV0t4b2ZAIdkJPNTl1ZAnZAsWm90TzIzRE5LMGQtR25aRklwYlQ5eVEtcjZAmRmpEbDlNWC1RNjZAhaFJLdXBaLUJlaEM4WkRaamJNcWZACNWx1VThSYUNRLVJHcFNHWHlnWl9FTjBjcl9Vd1pPcFZAHbAZDZD'
116
+        });
117
+        userFeed.run();
118
+      </script>
119
+    </div>
120
+  </section>
121
+
122
+
123
+
124
+
125
+	<!-- jQuery -->
126
+	<script src="js/jquery.min.js"></script>
127
+	<!-- jQuery Easing -->
128
+	<script src="js/jquery.easing.1.3.js"></script>
129
+	<!-- Bootstrap -->
130
+	<script src="js/bootstrap.min.js"></script>
131
+	<!-- Waypoints -->
132
+	<script src="js/jquery.waypoints.min.js"></script>
133
+	<!-- Stellar Parallax -->
134
+	<script src="js/jquery.stellar.min.js"></script>
135
+	<!-- Counters -->
136
+	<script src="js/jquery.countTo.js"></script>
137
+	<!-- Main JS (Do not remove) -->
138
+	<script src="js/main.js"></script>
139
+
140
+	</body>
141
+</html>