Change the type of .Site.Author from…
authorAustin Ziegler <austin@zieglers.ca>
Sat, 1 Nov 2014 03:58:14 +0000 (23:58 -0400)
committerspf13 <steve.francia@gmail.com>
Sun, 2 Nov 2014 04:45:33 +0000 (00:45 -0400)
commit8cc7684a91f6c83f0f68024deb9f98b330911d2f
tree3bc8b55c2ab04a3d10a3440443972b51cd6a6ae9
parentf3e9cbc7bd105ff63f1abcec9e1daf9411473c5c
Change the type of .Site.Author from…

…`map[string]string` to `map[string]interface{}`.

This allows values other than `string` values to be saved to Author,
such as:

    ```toml
    # config.toml
    …
    [Author]
      name = "Austin Ziegler"
      social-site = [ "Facebook", "Twitter", "GitHub" ]
    ```

My specific use-case is that I’m trying to make something work similar
whether it’s specified in `.Params.Author` or in `.Site.Author` without
introducing `.Site.Params.Author`.
hugolib/site.go