48 lines
954 B
Plaintext
48 lines
954 B
Plaintext
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||
|
<head>
|
||
|
<title>
|
||
|
<%= page_title -%>
|
||
|
</title>
|
||
|
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||
|
<%= stylesheet_link_tag 'application', :media => 'all' %>
|
||
|
<%= javascript_include_tag :defaults %>
|
||
|
|
||
|
<script type="text/javascript">
|
||
|
<%= @content_for_script %>
|
||
|
</script>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
|
||
|
<div id="container">
|
||
|
<% flash.keys.each do |key| -%>
|
||
|
<div id="<%= key -%>">
|
||
|
<%= flash[key] %>
|
||
|
</div>
|
||
|
<% end -%>
|
||
|
|
||
|
<div id="header">
|
||
|
<h1><%= page_title -%></h1>
|
||
|
<h2><%= secondary_title -%></h2>
|
||
|
</div>
|
||
|
|
||
|
<div id="page">
|
||
|
<div id="content">
|
||
|
<%= yield %>
|
||
|
</div>
|
||
|
<div id="sidebar">
|
||
|
<p>todo</p>
|
||
|
</div>
|
||
|
<br style="clear:both;" />
|
||
|
</div>
|
||
|
|
||
|
<div id="footer">
|
||
|
<hr />
|
||
|
<p><a href="http://www.penguincoder.org">PenguinCoder</a></p>
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</body>
|