jackdempsey (owner)

Revisions

  • 894fc8 Tue Jun 02 09:32:49 -0700 2009
  • bdf1f7 Tue Jun 02 09:30:25 -0700 2009
  • a7e534 Tue Jun 02 09:29:45 -0700 2009
gist: 122343 Download_button fork
public
Public Clone URL: git://gist.github.com/122343.git
Embed All Files: show embed
Text only #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
       "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
  <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
  <title><%= project_name %></title>
  <%= stylesheet_link_tag 'blueprint' %>
</head>
<body>
 
<%= flash[:notice] %>
 
<%= yield %>
 
</body>
</html>
~