github.com/google/cloudprober@v0.11.3/docs/themes/hugo-material-docs/CHANGELOG.md (about) 1 # Changelog 2 3 4 ### 8th April 2017 5 6 `.Now` has been deprecated. Hence the required minimum version of Hugo is v0.20. 7 8 ### 11th May 2016 9 10 #### Add templates for section lists 11 12 Sections such as www.example.com/foo/ will now be rendered with a list of all pages that are part of this section. The list shows the pages' title and a summary of their content. 13 14 [Show me the diff](https://github.com/digitalcraftsman/hugo-material-docs/commit/1f8393a8d4ce1b8ee3fc7d87be05895c12810494) 15 16 ### 22nd March 2016 17 18 #### Changing setup for Google Analytics 19 20 Formerly, the tracking id for Google Analytics was set like below: 21 22 ```toml 23 [params] 24 google_analytics = ["UA-XXXXXXXX-X", "auto"] 25 ``` 26 27 Now the theme uses Hugo's own Google Analytics config option. The variable moved outside the scope of `params` and the setup requires only the tracking id as a string: 28 29 ```toml 30 googleAnalytics = "UA-XXXXXXXX-X" 31 ``` 32 33 [Show me the diff](https://github.com/digitalcraftsman/hugo-material-docs/commit/fa10c8eef935932426d46b662a51f29a5e0d48e2)