This repository has been archived by the owner on Jun 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
54 lines (44 loc) · 1.82 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
<!doctype html>
<html ng-app="instaspot">
<head>
<title>instaspot</title>
<link href="http://fonts.googleapis.com/css?family=Lato:300,400,700|Karma:400,700" rel="stylesheet" type="text/css" />
<style type="text/css">
body {padding:0;margin:0;font-weight:300;font-family:Lato;}
a {color:#39f;}
header, section, footer {padding:5px 20px;}
header {background:#f99;padding-bottom:0;}
section {overflow:hidden;}
h1 {font-family:Karma;font-size:48px;margin:0;font-weight:700;}
h1 span {font-size:16px;font-weight:400;padding:0 0 0 10px;}
.spot {float:left;margin:0 15px 15px 0;}
.spot p {font-weight:400;}
footer {background:#3f9;}
footer a {color:#fff;}
</style>
</head>
<body>
<header>
<h1>instaspot<span> Find the most popular photos and videos on <a href="http://www.instagram.com">Instagram</a> (refresh for more)</span></h1>
</header>
<section ng-controller="ShowImages as images">
<div class="spot" ng-repeat="p in pics">
<p><a href="http://instagram.com/{{p.user.username}}" target="_blank">{{p.user.username}}</a></p>
<a href="{{p.link}}" target="_blank"><img ng-src="{{p.images.thumbnail.url}}" /></a>
</div>
</section>
<footer>
<p>Created by <a href="http://twitter.com/mager">@mager</a> | <a href="https://github.com/mager/instaspot/">Source Code</a></p>
</footer>
<script src="bower_components/angular/angular.js"></script>
<script src="js/application.js"></script>
<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-54114923-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>