What is this kind of tag {{code here}} inside a HTML document? -


i found tags:

{{define "content"}}  {{end}}  {{range .photos}} 

inside html document.

so, mean ?

from here

mustache provides logic-less templates work inside browser using mustache.js - so ideal html templates designers own.

example:

hello {{name}}  have won ${{value}}! {{#in_ca}} well, ${{taxed_value}}, after taxes. {{/in_ca}} 

given following attributes:

map(   "name" -> "chris",   "value" -> 10000,   "taxed_value" -> 10000 - (10000 * 0.4),   "in_ca" -> true   ) 

will produce following:

hello chris have won $10000! well, $6000.0, after taxes. 

Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

jsf - How to ajax update an item in the footer of a PrimeFaces dataTable? -

django - CSRF verification failed. Request aborted. CSRF cookie not set -