package
0.0.0-20210726165104-42ea4af6fad4
Repository: https://github.com/chenyendu/gowebdev.git
Documentation: pkg.go.dev

# README

Comparison in template

eq

Returns the boolean truth of arg1 == arg2

ne

Returns the boolean truth of arg1 != arg2

lt

Returns the boolean truth of arg1 < arg2

le

Returns the boolean truth of arg1 <= arg2

gt

Returns the boolean truth of arg1 > arg2

ge

Returns the boolean truth of arg1 >= arg2

source[https://godoc.org/text/template#Functions]