Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save schatterjee4/99152fa6d6748bc6a8ae7f9d64b721d6 to your computer and use it in GitHub Desktop.
Save schatterjee4/99152fa6d6748bc6a8ae7f9d64b721d6 to your computer and use it in GitHub Desktop.
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>
</head>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment