popcorn :: MyTemplatePugFileHandler :: pug_file
Use template from external filepopcorn :: MyTemplatePugFileHandler :: pug_file=
Use template from external filepopcorn $ MyTemplatePugFileHandler :: SELF
Type of this instance, automatically specialized in every classpopcorn $ MyTemplatePugFileHandler :: get
GET handler.core :: Object :: class_factory
Implementation used byget_class to create the specific class.
			popcorn :: Handler :: defaultinit
core :: Object :: defaultinit
popcorn :: Handler :: deserialize_body
Deserialize the request bodycore :: Object :: is_same_instance
Return true ifself and other are the same instance (i.e. same identity).
			core :: Object :: is_same_serialized
Isself the same as other in a serialization context?
			core :: Object :: is_same_type
Return true ifself and other have the same dynamic type.
			core :: Object :: output_class_name
Display class name on stdout (debug only).popcorn :: MyTemplatePugFileHandler :: pug_file
Use template from external filepopcorn :: MyTemplatePugFileHandler :: pug_file=
Use template from external filepopcorn :: Handler :: validate_body
Validate body input withvalidator
			popcorn :: Handler :: validator
Validator used to check body inputpopcorn :: Handler :: validator=
Validator used to check body input
class MyTemplatePugFileHandler
	super Handler
	# Use template from external file
	var pug_file = "example_template.pug"
	redef fun get(req, res) do
		# Values to add in the template
		var json = new JsonObject
		json["user"] = "Morriar"
		json["mysite"] = "My super website"
		# Render it from an external file
		res.pug_file(pug_file, json)
	end
end
					lib/popcorn/examples/templates/example_templates.nit:92,1--107,3