APIRenderingVersion: 2.x.xOn this pageRenderingRendering a template compiles a template and then calls it with the data you pass to it.SyntaxTypeDoc doc pageExamplevar myTemplate = 'Hi, my name is <%= it.name %>'Eta.render(myTemplate, { name: 'Johnny Appleseed' })// Returns "Hi, my name is Johnny Appleseed"