!!! XML
!!!
%html{ :xmlns => "http://www.w3.org/1999/xhtml" }
%head
%meta{ "http-equiv" => "Content-Type", "content" => "text/html; charset=utf-8" }
%title Web App
= stylesheet_link_tag 'web_app_theme'
= stylesheet_link_tag 'themes/default/style'
= stylesheet_link_tag 'application'
= javascript_include_tag :defaults
%body
#container
#header
%h1= link_to 'ESFilter', ''
#user-navigation
%ul
%li= link_to 'Profile', ''
%li= link_to 'Settings', ''
%li= link_to 'Logout', ''
.clear
#main-navigation
%ul
%li.first.active= link_to 'Home', ''
.clear
#wrapper
#main
= yield
#footer
.block
%p Copyright © 2009 Your Company
#sidebar
= yield :sidebar
.clear