Add Google Analytics support

Closes #44
This commit is contained in:
digitalcraftsman 2017-09-07 21:56:31 +02:00
parent eab1974019
commit 7cf2943ef4
2 changed files with 19 additions and 1 deletions

View File

@ -15,6 +15,7 @@ It pairs a prominent sidebar with uncomplicated content.
- [Themes](#themes) - [Themes](#themes)
- [Reverse layout](#reverse-layout) - [Reverse layout](#reverse-layout)
- [Disqus](#disqus) - [Disqus](#disqus)
- [Google Analytics](#google-analytics)
- [Author](#author) - [Author](#author)
- [Ported by](#ported-by) - [Ported by](#ported-by)
- [License](#license) - [License](#license)
@ -119,7 +120,7 @@ params:
### Disqus ### Disqus
You can optionally enable a comment system powered by Disqus for the posts. Simply add the variable `disqusShortname` to your config file. You can optionally enable a comment system powered by Disqus for the posts. Simply add the variable `disqusShortname` to your config file.
**TOML** **TOML**
```toml ```toml
@ -128,6 +129,21 @@ disqusShortname = "spf13"
> **Note:** Previous version 1.0 the Disqus shortname had to be defined inside the `[params]` block. > **Note:** Previous version 1.0 the Disqus shortname had to be defined inside the `[params]` block.
## Google Analytics
Google Analytics can be enabled by assigning your tracking code to the `googleAnalytics` variable in the config file:
**TOML**
```toml
googleAnalytics = "Your tracking code"
```
**YAML**
```yaml
googleAnalytics: Your tracking code
```
## Author ## Author
**Mark Otto** **Mark Otto**
- <https://github.com/mdo> - <https://github.com/mdo>

View File

@ -4,5 +4,7 @@
<div class="content container"> <div class="content container">
{{ block "main" . -}}{{- end }} {{ block "main" . -}}{{- end }}
</div> </div>
{{ template "_internal/google_analytics_async.html" . }}
</body> </body>
</html> </html>