Variables
You can reference the value of a system variable using curly brackets like this:
{element}
In practice variable references should never appear on their own, but rather be nested between tags:
<h2>{article.title}</h2>
<a href={`/${article.relative_url}`}>Read more</a>
Last modified 26d ago