I am going through this link to understand Layout handles. Here I have seen that the layout handles are in the form of [module_front_name]_[controller_name]_[action_name]. So, for example the layout handle for "Contact us" page is contacts_index_index, which calls the "indexAction" method available in "indexController" controller of "Contacts" module.
Later, I have seen other layout handles like:
page_emptypage_one_columnpage_two_columns_leftpage_two_columns_rightpage_three_columns
in "page.xml" layout file. (which are also in config.xml file of "page" module)
The above Layout handles are not in the form of [module_front_name]_[controller_name]_[action_name]. Then what are they?
My understanding is not clear on both the types of Layout handles. (Are there any other Layout handle types?)
Please explain