Page Not Found

{{#if missingController}}

Missing Controller

You attempted to call a controller that doesn't exist.

Make sure you create the following file:

	/App/Controller/{ControllerName}.js

Example:

	App.Controller.{ControllerName} = Pie.Controller.extend({

	});

{{/if}} {{#if missingAction}}

Missing Action

You attempted to call an action that doesn't exist.

Add an action in the following file:

	/App/Controller/{ControllerName}.js

Example:

	App.Controller.{ControllerName} = Pie.Controller.extend({
		{ActionName}: function() {
			// Action todo items here
		}
	});

{{/if}} {{#if missingView}}

Missing View

You attempted to call an view that doesn't exist.

Make sure you create the view file here:

	/App/View/{ControllerName}/{actionName}.html

{{/if}} {{#if missingRoute}}

Missing Route

Unable to determine a controller from the route. This usually means you landed on the root route / but haven't configured it.

Please set the root route in the config file:

	/App/Config/Routes.js

Example:

	App.Config.Routes = [
		{url: '/', controller: '{ControllerName}'}
	];

{{/if}}