Product Catalogue

Contentful's Product Catalogue https://github.com/contentful/product-catalogue-js

by Adrien Antoine

HTML

<body>
  <pre id="content" class="content-container"></pre>
</body>

JavaScript

var contentfulClient = contentful.createClient({
  accessToken: '95090b8271cac3b613295d747a4524e2bcc056fe28570a5cfe8ad16c014b97dd',
  space: 't4pm46tgc6fm',
  host: 'preview.contentful.com'
})

contentfulClient.getEntries({
    content_type: 'post',
    "fields.slug[in]": 'new-version-of-adriantoine-com',
    "limit": 1
  })
  .then(function(entries) {
    document.getElementById('content').innerHTML = JSON.stringify(entries, null, 2)
  })