Tags (formerly called controls) let you render a view/controller similar to how you would with a view binding. The main difference is you can pass in attributes as arguments.
Tags start with a :
(colon) to differentiate them from normal html tags. Like normal html tags, they should be closed.
<:tag_name />
or
<:tag_name></:tag_name>
Refer to the View Binding section to see how tags lookup their associated view files. The above has the same lookup as {{ view "tag_name" }}
. Doing <:blog:comments />
is the same as {{ view "blog/comments" }}
A tag loads the same as a template, loading the controller, calling the action method (if one exists), and rendering the view. In the next subchapters you will learn to: