Skip to content

Latest commit

 

History

History
33 lines (19 loc) · 1018 Bytes

CHANGELOG.md

File metadata and controls

33 lines (19 loc) · 1018 Bytes

Changelog

8th April 2017

.Now has been deprecated. Hence the required minimum version of Hugo is v0.20.

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