Skip to content

Instantly share code, notes, and snippets.

@Omer
Created February 11, 2010 23:33
Show Gist options
  • Save Omer/302118 to your computer and use it in GitHub Desktop.
Save Omer/302118 to your computer and use it in GitHub Desktop.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Application Test</title>
<%= render 'layouts/stylesheets' %>
<%= javascript_include_tag :defaults %>
</head>
<body>
<div class="container">
<div id="header" class="span-16 last">
<h2>Math Assignments</h2>
</div>
<hr class="span-16 last"/>
<div id="subheader" class="span-16 last">
<h4 class="alt">“Do not worry about your problems with mathematics, I assure you mine are far greater.” ~ Albert Einstein</h3>
</div>
<hr class="span-16 last"/>
<div id="content" class="span-10 colborder">
<%= yield %>
</div>
<%= render 'layouts/sidebar' %>
<%= render 'layouts/footer' %>
</div>
</body>
</html>
<div id="sidebar" class="span-5 last">
<div id="stats">
<h3 class="caps">Statistics</h3>
</div>
<div class="box">
<div class="quiet">Weeks: <%= assignment_statistics_weeks %></div>
<div class="quiet">Probability: <%= sprintf("%.1f",assignment_statistics_probability) %>%</div>
<div class="quiet">Geometry: <%= sprintf("%.1f",assignment_statistics_geometry) %>%</div>
</div>
</div>
<%= stylesheet_link_tag 'blueprint/screen', :media => 'screen, projection' %>
<%= stylesheet_link_tag 'blueprint/print', :media => 'print' %>
<!--[if lt IE 8]><%= stylesheet_link_tag 'blueprint/ie' %><![endif]-->
<%= stylesheet_link_tag 'blueprint/plugins/fancy-type/screen', :media => 'screen, projection' %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment