analytics.html 469 B

1234567891011121314
  1. {% if jekyll.environment == 'production' and site.analytics.provider and page.analytics != false %}
  2. {% case site.analytics.provider %}
  3. {% when "google" %}
  4. {% include /analytics-providers/google.html %}
  5. {% when "google-universal" %}
  6. {% include /analytics-providers/google-universal.html %}
  7. {% when "google-gtag" %}
  8. {% include /analytics-providers/google-gtag.html %}
  9. {% when "custom" %}
  10. {% include /analytics-providers/custom.html %}
  11. {% endcase %}
  12. {% endif %}