Render file as a TemplateString with values and write it as html.

Property definitions

popcorn :: pop_templates $ HttpResponse :: template_string
	# Render `file` as a TemplateString with `values` and write it as html.
	fun template_string(tpl_string: nullable String, values: nullable Map[String, nullable Writable], status: nullable Int) do
		var tpl = new TemplateString(tpl_string or else "")
		template(tpl, values, status)
	end
lib/popcorn/pop_templates.nit:102,2--106,4