Project

General

Profile

Download (1.22 KB) Statistics
| Branch: | Tag: | Revision:
55ed30c7 Ohad Levy
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
a944fa00 Ohad Levy
<head>
55ed30c7 Ohad Levy
<title><%= h(yield(:title) || "The Foreman") %></title>
<%= stylesheet_link_tag 'style' %>
<%= yield(:head) %>
c6f1b718 Ohad Levy
<script src='http://www.google.com/jsapi'></script>
a944fa00 Ohad Levy
<%= javascript_include_tag :defaults %>
<%= active_scaffold_includes %>
</head>
6e50fa1d Ohad Levy
<body>
<div id="header">
50d325f0 Ohad Levy
<%= render :partial => 'home/topbar' %>
6e50fa1d Ohad Levy
<div class="title">
1fe671cf Ohad Levy
<center>The Foreman</center>
6e50fa1d Ohad Levy
</div>
<%= render :partial => "home/menu" -%>
</div>
452d6329 Paul Kelly
<%= render "common/searchbar" rescue "<!-- No searchbar facility available in this controller -->" %>
1fe671cf Ohad Levy
<%= content_tag('div', flash[:foreman_error], :class => 'flash error') if flash[:foreman_error] -%>
<%= content_tag('div', flash[:foreman_notice], :class => 'flash notice') if flash[:foreman_notice] -%>
452d6329 Paul Kelly
<div id="content">
55ed30c7 Ohad Levy
<%- if show_title? -%>
<h1><%=h yield(:title) %></h1>
<%- end -%>
6e50fa1d Ohad Levy
<%= yield -%>
</div>
<div id="footer">
cdd8bb6f Paul Kelly
&copy; 2009-2010 <%= mail_to "paul.ian.kelly@googlemail.com", "Paul Kelly" %> and <%= mail_to "ohadlevy@gmail.com", "Ohad Levy" %>
6e50fa1d Ohad Levy
</div>
</body>
a944fa00 Ohad Levy
</html>