Use .Date.IsZero to skip unset date in embedded templates
authorAnthony Fok <foka@debian.org>
Fri, 30 Jan 2015 13:24:44 +0000 (06:24 -0700)
committerbep <bjorn.erik.pedersen@gmail.com>
Fri, 30 Jan 2015 20:04:06 +0000 (21:04 +0100)
commit3d60955e17328d2bb212a9dceb4825ac2f260681
treea978e480db0e405b11427ceb6409467589b953a0
parent35684e8f6fb9f9a959d00b34c13868ac46bbc1ef
Use .Date.IsZero to skip unset date in embedded templates

Use `{{ if not .Date.IsZero }}` to print dates only when they are
defined.  This is to avoid things like

    <lastBuildDate>Mon, 01 Jan 0001 00:00:00 +0000</lastBuildDate>

and

    <lastmod>0001-01-01T00:00:00+00:00</lastmod>

showing up in index.xml (RSS) and sitemap.xml.

Pipe dates with ±hh:mm time zone through `safeHtml`
to prevent the `+` sign from turning into `&#43;`.

Also make some shuffling to avoid blank lines in the output.
tpl/template_embedded.go