SlideShare a Scribd company logo
Ruby on Rails
Course Day 5
By @AlSayedGamal
Views Haml and
bootstrap
Agenda
Views, partials and helpers
rendering and layout
adding haml and syntax difference
compared to ERB
adding twitter bootstrap and
responsive grid design basics
Views, partials and
helpers
Views are loaded by
convention.
Normal content will fall
in main yield part.
_ prefixed files are
called partials and are
rendered inside views
for reusability sake.
Example: _form in any
scaffold.
Rendering and
layout
Each controller is
associated with
layout.
And each layout
has some regions

represented by
yield statement
and region name
Helpers
Helper example:
form_for
link_to
You can define
your own on app/
helpers folder.
Haml is DRY markdown
cleaner views in action
Haml Simple rules
%tagname#id.class
Twitter Bootstrap
Responsive and grid design in action
Installation and
Usage
add following gems to your Gemfile and bundle
gem 'twitter-bootstrap-rails'
gem 'haml'
gem ‘haml-rails'
now install bootstrap static assets
rails generate bootstrap:install static
Generate fluid layout
rails g bootstrap:layout application fluid*
Scaffold and style
rails g bootstrap:themed <scaffold_model>s
*remove the .erb default one
Add new regions to
layout
-if content_for?
= yield

= yield(:region)
= content_for do
Associated Model
form best practices
Use

”accepts_nested_att
ributes_for” to
accept data from
associated model.
Use

“fields_for” to show
this associated
model fields.
Use
”validated_associate
d” to validate related
model
Use

form builder’s
collection_* to link
related models

Example:
collection_select
Exercise

More Related Content

PDF
Material Theme
PDF
Rails course day 4
PDF
WordPress Customizer
PDF
Modern Web Applications using AngularJS
PPTX
WordPress customizer for themes and more
PDF
Write Your First WordPress Plugin
PPTX
WordPress Theme Development
PDF
Ionic Hybrid Mobile Application
Material Theme
Rails course day 4
WordPress Customizer
Modern Web Applications using AngularJS
WordPress customizer for themes and more
Write Your First WordPress Plugin
WordPress Theme Development
Ionic Hybrid Mobile Application

More from Al Sayed Gamal (20)

PDF
9 patterns of microservices
PPTX
Elixir introduction
PDF
Racist syndrome (composition over inheritance)
PDF
Rails course day 8
PDF
Rails course day 7
PDF
Rails course day 6
PDF
Rails course day 3
PDF
Rails course day 2
PDF
PDF
OpenStack Murano Application Catalog
PDF
Failfast
PDF
Git workshop
PDF
Python Novice to Ninja
PDF
Web development Hackathon
PDF
Python novice to ninja
PDF
Python 45 minutes hangout #3
PDF
Python 45 minutes Hangouts #4
PDF
Python45 2
PDF
Python45s - Session 01
PDF
Mansoura University CSED & Nozom web development sprint
9 patterns of microservices
Elixir introduction
Racist syndrome (composition over inheritance)
Rails course day 8
Rails course day 7
Rails course day 6
Rails course day 3
Rails course day 2
OpenStack Murano Application Catalog
Failfast
Git workshop
Python Novice to Ninja
Web development Hackathon
Python novice to ninja
Python 45 minutes hangout #3
Python 45 minutes Hangouts #4
Python45 2
Python45s - Session 01
Mansoura University CSED & Nozom web development sprint
Ad

Recently uploaded (20)

PDF
Wondershare Filmora 15 Crack With Activation Key [2025
PDF
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
PPTX
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
PDF
wealthsignaloriginal-com-DS-text-... (1).pdf
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
PDF
Understanding Forklifts - TECH EHS Solution
PDF
Design an Analysis of Algorithms II-SECS-1021-03
PPTX
Computer Software and OS of computer science of grade 11.pptx
PDF
Digital Systems & Binary Numbers (comprehensive )
PPTX
Transform Your Business with a Software ERP System
PDF
PTS Company Brochure 2025 (1).pdf.......
PPTX
ai tools demonstartion for schools and inter college
PDF
2025 Textile ERP Trends: SAP, Odoo & Oracle
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PPTX
Reimagine Home Health with the Power of Agentic AI​
PPTX
Operating system designcfffgfgggggggvggggggggg
PDF
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
PDF
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
PDF
System and Network Administration Chapter 2
Wondershare Filmora 15 Crack With Activation Key [2025
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
wealthsignaloriginal-com-DS-text-... (1).pdf
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
Understanding Forklifts - TECH EHS Solution
Design an Analysis of Algorithms II-SECS-1021-03
Computer Software and OS of computer science of grade 11.pptx
Digital Systems & Binary Numbers (comprehensive )
Transform Your Business with a Software ERP System
PTS Company Brochure 2025 (1).pdf.......
ai tools demonstartion for schools and inter college
2025 Textile ERP Trends: SAP, Odoo & Oracle
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
Reimagine Home Health with the Power of Agentic AI​
Operating system designcfffgfgggggggvggggggggg
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
System and Network Administration Chapter 2
Ad

Rails course day 5