Skip to content

Instantly share code, notes, and snippets.

View dipranjans's full-sized avatar

Diptiranjan S dipranjans

  • Bangalore
View GitHub Profile
@dipranjans
dipranjans / 0_reuse_code.js
Created August 4, 2017 18:14
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@dipranjans
dipranjans / SightlyClientLibInclude.html
Created January 17, 2018 18:15 — forked from yupadhyay/SightlyClientLibInclude.html
Include Clientlibs in Sightly
<head data-sly-use.clientLib="${'/libs/granite/sightly/templates/clientlib.html'}">
<!--/* for css+js */-->
<meta data-sly-call="${clientLib.all @ categories='your.clientlib'}" data-sly-unwrap></meta>
<!--/* only js */-->
<meta data-sly-call="${clientLib.js @ categories='your.clientlib'}" data-sly-unwrap></meta>
<!--/* only css */-->
<meta data-sly-call="${clientLib.css @ categories='your.clientlib'}" data-sly-unwrap></meta>