Created
April 8, 2014 19:07
-
-
Save azcoov/10172763 to your computer and use it in GitHub Desktop.
Nearby Now Javascript Widget - Tech Page Example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title>John's Recent Reviews</title> | |
<meta name="description" content=""> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link href="http://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.0.3/css/bootstrap.css" rel="stylesheet"> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> | |
</head> | |
<body> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-md-12"> | |
<h2>John's Recent Reviews</h2> | |
<div id="tech-reviews"></div> | |
</div> | |
</div> | |
</div> | |
<script | |
src="https://s3.amazonaws.com/reviewcloud/widget/v1/reviews.min.js" | |
data-key="<Your API Token Here>" | |
data-tech="[email protected]" | |
data-container="tech-reviews" | |
data-type="full" | |
data-count="10"> | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment