A SIMPLE TEMPLATE
Let’s start with a very simple template that shows our name and our favorite thing:
<div>
Hello my name is {{name}} and I like {{thing}} quite a lot.
</div>
{}: RENDERING
To render a value, we can use the standard double-curly syntax:
My name is {{name}}
P...