Wanted to get some interactivity in my portfolio-images, this is one of the ideas that I had and something that I will use for the site. (Only works in webkit at the moment)
A Pen by Patrik Hjelm on CodePen.
{% assign current_variant = product.selected_or_first_available_variant %} | |
<div id="richsnippet"> | |
<div itemscope itemtype="http://schema.org/Product"> | |
<meta itemprop="url" content="{{ shop.url }}{{ product.url }}"> | |
<meta itemprop="image" content="{{ product.featured_image.src | img_url: 'grande' }}"> | |
<meta itemprop="name" content="{{ product.title | escape }}"> | |
<meta itemprop="description" content="{{ product.description | strip_html }}"> | |
{% if product.vendor %}<meta itemprop="brand" content="{{ product.vendor }}">{% endif %} |
<body> | |
<h1> | |
Solution - Token Authentication Using the Nuxeo JS Client | |
</h1> | |
<h2> | |
Your Goal | |
</h2> |
console.log('Loading event'); | |
var Q = require('q'); | |
var aws = require('aws-sdk'); | |
var cloudfront = new aws.CloudFront(); | |
exports.handler = function (event, context) { | |
//_log('Received event: ', event); | |
var bucket = event.Records[0].s3.bucket.name; |
Wanted to get some interactivity in my portfolio-images, this is one of the ideas that I had and something that I will use for the site. (Only works in webkit at the moment)
A Pen by Patrik Hjelm on CodePen.