Add `time.Time` type support to `where` tpl func
authorTatsushi Demachi <tdemachi@gmail.com>
Tue, 26 May 2015 10:33:32 +0000 (19:33 +0900)
committerbep <bjorn.erik.pedersen@gmail.com>
Tue, 26 May 2015 13:59:36 +0000 (15:59 +0200)
commit601a2ce124b8ba93715e219d868435b9d255a9ab
tree79c5d688889de9f1adcd48dfc94c5726df5afcf9
parentbeaa09a7f646110ba14cc6ae3cd0d342ebb93740
Add `time.Time` type support to `where` tpl func

`where` tpl function doesn't support `time.Time` type so if people want
to compare such values, it's required that these values are converted
into `int` and compare them.

This improves it. If `time.Time` values are passed to `where`, it
converts them into `int` internally, compares them and returns the
result.

See also
http://discuss.gohugo.io/t/future-posts-and-past-posts/1229/3
tpl/template_funcs.go
tpl/template_funcs_test.go