Tag Archives: UI

Routing in Rails

One aspect of web development developers would like control over is the URL structure. In most web development languages, the URL is intrinsically tied to the folder and file structure. Rails–although it also allows use of this structure for static … Continue reading

Posted in Development | Tagged , , , | Comments Off

Site-Wide Layouts

How can you create a site-wide layout? Simply add an application.rhtml file into your layout directory. Any code you add to this file will apply to your entire site. Use yield to place the page’s content into your layout. Continue reading

Posted in Development | Tagged , | Comments Off