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
// Escape Liquid in scss. | |
// | |
// Expected output: | |
// a{ | |
// color: {{ settings.link-color }}; | |
// } | |
a{ | |
color: #{'{{ settings.link-color }}'}; | |
} |
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
Replace: | |
if(!thisMedia.images.thumbnail.url.indexOf("null") > -1) { | |
var url = thisMedia.images.thumbnail.url; | |
url = url.replace(/\/s150x150\//,"/s320x320/"); | |
item = '<img class="il-photo__img" src="'+url+'" data-filter="'+thisMedia.filter+'" />'; | |
item = '<a href="'+thisMedia.link+'" target="_blank">'+item+'</a>'; | |
} |
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
⛷ Skier | |
⛹ Person Bouncing Ball | |
⛑ Rescue Worker’s Helmet | |
⛰ Mountain | |
⛪ Church | |
⛩ Shinto Shrine | |
⛲ Fountain | |
⛺ Tent | |
⛽ Fuel Pump | |
⛵ Sailboat |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |