I have a custom Drupal Theme Starterkit. In it there is a JS file where I need to get the path to the current theme. Example:
imagesPath: '/sites/default/themes/{{ THEME SANITIZED }}/js/ckeditor_templates/',
Since it is possible that someone would put the starterkit in
/sites/all/themes/
instead of
/sites/default/themes/
I need the Starterkit to account for that. Is there a {{ }} to get the path to the directory where the Starterkit is being created?