Just launched! Get 30% off Rails Revisited Have a Look

Buy or Subscribe

You can access this course in just a minute, and support my efforts to rid the world of crappy online courses!

Buy Standalone  Subscribe

The Code
Running the site in development mode, ensuring that CSS gets compiled as we need:
bin/dev
Rendering a partial:
<%=render("directory/partial") %>
It's important to remember that partials start with an underscore, but you don't use it when you call render.
When defining a route, you start with the HTTP verb, the matcher, and then the controller#action pair:
get 'about', to: "home#about"