在humanize.Time()包中使用来自Mysql的时间戳

I have a mariaDB database with a timestamp field. I want the values from that field being parsed to time.Time() values. This is possible by adding the ?parseTime=true to the connection string. After fetching a row, I want to use the value (which is time.Time) with humanize.Time(). Unfortunately values within the past 60 minutes are converted by humanize.Time() as 1 hour from now. When I put directly a time.Time() value into humanize.Time(), it gives me x seconds ago.

So I don't know what I'm doing wrong here. I think I need to convert 2017-04-23 14:00:16 +0000 UTC to 2017-04-23 14:00:16.370758048 +0200 CEST, but how?

package main

import (
    "fmt"
    "log"
    "time"

    humanize "github.com/dustin/go-humanize"
)

// value from database: 2017-04-23 14:00:16 +0000 UTC
// typical time.Now() value: 2017-04-23 14:00:16.370758048 +0200 CEST

func main() {
    layout := "2006-01-02 15:04:05 -0700 MST"
    beforeParsing := "2017-04-23 14:00:16 +0000 UTC"

    t, err := time.Parse(layout, beforeParsing)
    if err != nil {
        log.Fatal(err)
    }

    fmt.Println(t)
    fmt.Println(humanize.Time(t))
}