-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (71 loc) · 3.49 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
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html ng-app="products">
<head>
<title>Buy it - Selling stuff</title>
<meta name="description" content="Selling tech things. Selling Keyboard Apple Wireless, Mouse Razer Boom Slang, Mouse Razer Copperhead, Headset Razer Piranha and others things.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<a href="https://github.com/FelipeLahti/Buy-it"><img style="position: absolute; top: 0; left: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_left_orange_ff7600.png" alt="Fork me on GitHub"></a>
<div class="container-fluid">
<div class="row text-center">
<h1 class="text-center">Buy it</h1>
<p class="subtitle">Simple open-source application to sell your stuffs</p>
<div class="row text-center your-info">
<p>If you want to buy something contact: <b>Felipe</b> in [email protected] or 51-97591933</p>
<div class="fb-like" data-href="http://buy-it.herokuapp.com" data-send="true" data-width="470" data-show-faces="true"></div>
</div>
</div>
<div class="row-fluid" ng-controller="ProductsCtrl">
<div class="wrapper">
<ul class='small'>
<li class="product" ng-repeat="product in products">
<a href="#{{slugify(product)}}">
<h6 class="text-center">{{product.name}} - R${{product.price}}</h6>
<img width="130" ng-src="{{product.imgs[0].img}}" style="margin:auto;">
</a>
</li>
</ul>
</div>
<div class="clear"></div>
<ul>
<li id='{{slugify(product)}}' class="product" ng-repeat="product in products">
<h2 class="text-center">{{product.name}} - R${{product.price}}</h2>
<carousel interval="myInterval">
<slide ng-repeat="slide in product.imgs" active="slide.active">
<img ng-src="{{slide.img}}" style="margin:auto;">
</slide>
</carousel>
<div class="info text-center">
<p>{{product.description}}</p>
<p><a target="_blank" href="{{product.link}}">{{product.link}}</a></p>
</div>
</li>
</ul>
</div>
</div>
<script type="text/javascript" src="js/angular.min.js"></script>
<script type="text/javascript" src="js/ui-bootstrap-tpls-0.2.0.min.js"></script>
<script type="text/javascript" src="js/underscore.string.min.js"></script>
<script type="text/javascript" src="js/app.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-8210726-5', 'herokuapp.com');
ga('send', 'pageview');
</script>
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/pt_BR/all.js#xfbml=1&appId=271243109554129";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
</body>
</html>