Skip to content

Instantly share code, notes, and snippets.

@shadowmaru
Created September 4, 2008 15:59
Show Gist options
  • Save shadowmaru/8796 to your computer and use it in GitHub Desktop.
Save shadowmaru/8796 to your computer and use it in GitHub Desktop.
Layout file example
app/views/layouts/application.html.erb
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title><%= @title || "Título" %></title>
<%= stylesheet_link_tag 'site' %>
<%= javascript_include_tag 'application', 'prototype', 'effects' %>
</head>
<body>
<div id="header">
<%= render :partial => 'shared/header' %>
</div>
<div id="content">
<%= yield %>
</div>
<div id="footer">
<%= render :partial => 'shared/footer' %>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment