blackbirdchess-docker-dev/DOCUMENTATION/themes/hugo-material-docs/CHANGELOG.md

915 B

Changelog

11th May 2016

Add templates for section lists

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.

Show me the diff

22nd March 2016

Changing setup for Google Analytics

Formerly, the tracking id for Google Analytics was set like below:

[params]
    google_analytics = ["UA-XXXXXXXX-X", "auto"]

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:

googleAnalytics = "UA-XXXXXXXX-X"

Show me the diff