1 minute

Install Web-Tracking.eu on Jekyll

Add a small include and reference it from your default layout's head.

1

Create the include

Create _includes/web-tracking.html with:

<script src="https://web-tracking.eu/t.js?site={{ site.web_tracking_site_id }}" defer></script>
2

Reference it from your layout

Open _layouts/default.html (or your custom head include) and inside the <head> block add:

{% include web-tracking.html %}
3

Set the site ID in _config.yml

web_tracking_site_id: YOUR_SITE_ID

Rebuild your site with jekyll build or bundle exec jekyll serve.

Verify it's working

  1. Open your site in a private/incognito window.
  2. Visit any page on the site.
  3. Open the Web-Tracking.eu dashboard for this site.
  4. The Realtime view should show your visit within 5–10 seconds.

Having trouble?

  • No data showing: Confirm the script is in the page source (View Source > search web-tracking.eu/t.js).
  • Wrong site ID: Double-check the ID matches the one in your dashboard. IDs are case-sensitive.
  • Ad blocker: Web-Tracking.eu is privacy-friendly, but some aggressive blockers still hide it. Test in a fresh browser.
  • Caching: Many platforms cache the page HTML. Purge your cache after install.
  • Still stuck? Email hello@web-tracking.eu with your site URL.
← Back to install hub