Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

1234567891011121314
  1. {% if javascript -%}{{ javascript }}{%- endif %}
  2. {% if google_analytics_id -%}
  3. // Google Analytics template
  4. window._gaq = window._gaq || [];
  5. window._gaq.push(['_setAccount', '{{ google_analytics_id }}']);
  6. window._gaq.push(['_trackPageview']);
  7. (function() {
  8. var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  9. ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  10. var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  11. })();
  12. {%- endif %}