···199199// include a previously defined block
200200[% INCLUDE myshinyblock %]
201201202202+// set a variable
203203+[% SET myvar = "foo" %]
204204+205205+// include a template based on a variable path (would expand to my/foo/template.html
206206+[% INCLUDE my/$myvar/template.html %]
207207+208208+// try/catch
209209+[% TRY %]
210210+ [% INCLUDE my/$myvar/template.html %]
211211+[% CATCH %]
212212+ [% INCLUDE bog/standard/template.html %]
213213+[% END %]
214214+215215+[% TRY %]
216216+ [% INCLUDE anundefinedblock %]
217217+[% CATCH %]
218218+ oops!
219219+[% END %]
220220+221221+202222// define a block
203223[% BLOCK myshinyblock %]
204224 [% entry.name %]