URI: 
       lowercase template function first to be consistent with all other template functions - hugo - [fork] hugo port for 9front
  HTML git clone git@git.drkhsh.at/hugo.git
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
   DIR commit 13fa7cb74838f85248468c355112c3f3c8f14e8e
   DIR parent 50d9046b648044d421ec745869141b758c76a879
  HTML Author: spf13 <steve.francia@gmail.com>
       Date:   Thu, 14 Nov 2013 09:32:49 -0500
       
       lowercase template function first to be consistent with all other template functions
       
       Diffstat:
         M template/bundle/template.go         |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/template/bundle/template.go b/template/bundle/template.go
       @@ -144,7 +144,7 @@ func NewTemplate() Template {
                        "isset":     IsSet,
                        "echoParam": ReturnWhenSet,
                        "safeHtml":  SafeHtml,
       -                "First":     First,
       +                "first":     First,
                }
        
                templates.Funcs(funcMap)