Files
java-tutorials/libraries-2/src/test/resources/handlebars/if.html
T

5 lines
87 B
HTML
Raw Normal View History

2019-10-13 23:40:45 +02:00
{{#if busy}}
<h4>{{name}} is busy.</h4>
{{else}}
<h4>{{name}} is not busy.</h4>
{{/if}}