Skip to content

Instantly share code, notes, and snippets.

@azcoov
Created April 8, 2014 19:07
Show Gist options
  • Save azcoov/10172763 to your computer and use it in GitHub Desktop.
Save azcoov/10172763 to your computer and use it in GitHub Desktop.
Nearby Now Javascript Widget - Tech Page Example
<!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="john@yourdomain.com"
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