mirror of https://github.com/luizdepra/hugo-coder.git

Luiz F. A. de Prá
2 days ago 0450553ace0372ac31a0929a59dc021144c2c2c8
Move counterdev to the end of body (#993)

### Prerequisites

Put an `x` into the box(es) that apply:

- [ ] This pull request fixes a bug.
- [ ] This pull request adds a feature.
- [ ] This pull request introduces breaking change.

### Description

Describe what this pull request achieves.

### Issues Resolved

List any existing issues this pull request resolves.

### Checklist

Put an `x` into the box(es) that apply:

#### General

- [ ] Describe what changes are being made
- [ ] Explain why and how the changes were necessary and implemented
respectively
- [ ] Reference issue with `#<ISSUE_NO>` if applicable

#### Resources

- [ ] If you have changed any SCSS code, run `make release` to
regenerate all CSS files

#### Contributors

- [ ] Add yourself to `CONTRIBUTORS.md` if you aren't on it already
1 files modified
9 ■■■■■ changed files
layouts/baseof.html 9 ●●●●● patch | view | raw | blame | history
layouts/baseof.html
@@ -5,9 +5,6 @@
  <title>{{ block "title" . }}{{ .Site.Params.HeadTitle | default .Site.Title }}{{ end }}</title>
  {{ partial "head.html" . }}
  {{ if and .Site.Params.counterdev .Site.Params.counterdev.id }}
  {{- partial "analytics/counterdev" . -}}
  {{ end }}
</head>
{{ $csClass := "colorscheme-light" }}
@@ -69,9 +66,12 @@
  {{ end }}
  {{ end }}
  {{ template "_internal/google_analytics.html" . }}
  {{ if and .Site.Params.counterdev .Site.Params.counterdev.id }}
  {{- partial "analytics/counterdev" . -}}
  {{ end }}
  {{ if and .Site.Params.fathomAnalytics .Site.Params.fathomAnalytics.siteID }}
  {{- partial "analytics/fathom" . -}}
  {{ end }}
@@ -138,4 +138,5 @@
  {{- partial "body/extensions" . -}}
</body>
</html>