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 -

c# - How do I get the Nth largest element from a list with duplicates, using LINQ? -

jsp - "Sending a redirect is forbidden after the response has been committed" in sendRedirect -