Friendly Glossary
Bootstrap
The process of loading the Friendly core libraries into memory and starting the framework.
Controller
A PHP class descended from FriendlyController that contains methods (called actions) for handling specific requests. In terms of a traditional static website, think of the controller as being like a folder, while the action is like a single page. These are found in app/controllers.
View
A template file representing the user interface for a given action. Typically these are HTML files that can optionally include special template markup. An HTML view template for an action called articles that is part of a controller class called blog will be found in app/views/blog/articles.html.