-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix umami analytics script name (#860)
Apparently umami renamed their script which silently broke the feature in hugo-coder. closes #859 ### Prerequisites Put an `x` into the box(es) that apply: - [x] This pull request fixes a bug. - [ ] This pull request adds a feature. - [ ] This pull request introduces breaking change. ### Description It fixes the umami analytics feature. ### Issues Resolved #859 ### Checklist Put an `x` into the box(es) that apply: #### General - [x] Describe what changes are being made - [x] Explain why and how the changes were necessary and implemented respectively - [x] Reference issue with `#<ISSUE_NO>` if applicable #### Contributors - [x] Add yourself to `CONTRIBUTORS.md` if you aren't on it already
- Loading branch information
1 parent
c466504
commit c340320
Showing
4 changed files
with
12 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
<!-- Umami Analytics START --> | ||
<script async defer data-website-id="{{ .Site.Params.umami.siteID }}" | ||
src="{{ .Site.Params.umami.serverURL }}/umami.js"></script> | ||
<script async defer data-website-id="{{ .Site.Params.umami.siteID }}" src="{{ .Site.Params.umami.scriptURL }}"></script> | ||
<!-- Umami Analytics END --> |