Loads the template file contents.

Property definitions

template $ TemplateString :: load_template_file
	# Loads the template file contents.
	private fun load_template_file(tpl_file: String): String do
		var file = new FileReader.open(tpl_file)
		var text = file.read_all
		file.close
		return text
	end
lib/template/macro.nit:139,2--145,4