#Intro to FubuMVC
##Bare Bones Directly after creating an empty web project and adding the FubuMVC NuGet package reference.
##Quick Start Read this informative guide: Getting Started
We will start exploring other FubuMVC features from here.
##Routes
- Configure routing conventions using Routes DSL
- With UrlPattern attribute you can hard code routes with inputs/defaults
- Implement your own IUrlPolicy for complete control
##View Location
- Spark
- How to configure conventions
##Behaviors
- Explanation of BehaviorGraph
- Ideas for what you could do with behaviors
##Html Conventions Conventions that determine which HTML markup is generated for model properties.
##Model Binding Receiving posted form data automatically wired up to input models.
##Packaging Make your site more pluggable and modular with packages.