-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
99 lines (82 loc) · 3.76 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Social Reviews</title>
<meta property="og:url" content="https://reviews.techulus.com/" />
<meta property="og:title" content="Social Reviews | Social proof your website" />
<meta property="og:description" content="Impress your web visitors with Twitter / Instagram testimonials" />
<meta property="og:image" content="https://cdn.capture.techulus.in/e1ab7054-dabc-48d6-a33f-c18038aac1c8/59dfea0525338a867ec33fd582acb6d3/image?url=https://reviews.techulus.com/&vw=1200&vh=630" />
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@techulus">
<meta name="twitter:creator" content="@arjunz">
<meta name="twitter:title" content="Social Reviews | Social proof your website">
<meta name="twitter:description" content="Impress your web visitors with Twitter / Instagram testimonials">
<meta name="twitter:image" content="https://cdn.capture.techulus.in/e1ab7054-dabc-48d6-a33f-c18038aac1c8/59dfea0525338a867ec33fd582acb6d3/image?url=https://reviews.techulus.com/&vw=1200&vh=630">
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,800" rel="stylesheet">
<style>
body {
font-family: 'Montserrat', sans-serif;
}
h1 {
font-size: 4em;
font-weight: 800;
color: rgb(33, 153, 256);
}
h1,
h2 {
font-weight: bold;
}
h3 {
margin-top: 5px;
}
@media only screen and (max-width: 760px) {
h1 {
font-size: 2em;
}
}
</style>
</head>
<body>
<div class="container">
<h1 style="margin-top: 75px;">Social Reviews</h1>
<h3>An embeddable social posts widget.</h3>
<h3>Impress your web visitors with Twitter & Instagram testimonials.</h3>
<div class="btn-group" role="group">
<a href="https://github.com/techulus/social-reviews" class="btn btn-default btn-lg">Documentation</a>
<a href="https://github.com/techulus/social-reviews/issues" class="btn btn-default btn-lg">Issues</a>
</div>
<h2>DEMO</h2>
<h3><img src="https://cdnjs.cloudflare.com/ajax/libs/webicons/2.0.0/webicons/webicon-twitter-m.png" /> iPhone XS</h3>
<div id="social-review-1"></div>
<h3><img src="https://cdnjs.cloudflare.com/ajax/libs/webicons/2.0.0/webicons/webicon-instagram-m.png" /> iPhone XS</h3>
<div id="social-review-2"></div>
<small style="margin-top: 30px; margin-bottom: 35px; display: block;">© 2018 Techulus, LLC | <a href="https://techulus.com/"
target="_blank">techulus.com</a></small>
</div>
<script src="/social-reviews.min.js"></script>
<script>
new SocialReview({
selector: '#social-review-1',
type: 'twitter',
postIds: ['1044414534792863744', '1044779222844104704', '1045656805882228736', '1047160680741310465', '1044705162441478147']
})
new SocialReview({
selector: '#social-review-2',
type: 'instagram',
postIds: ['BohDCd_HWiT', 'BoBMklZlyDZ', 'BoiXh2yHHML', 'BojDDn8Amqn'],
})
</script>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
crossorigin="anonymous"></script>
</body>
</html>