photomix/app/views/layouts/bootstrap.html.erb

30 lines
829 B
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<%= render :partial => 'shared/head' %>
</head>
<body>
<%= render :partial => 'shared/nav_bar' %>
<div class="container">
<!-- Main hero unit for a primary marketing message or call to action -->
<div class="hero-unit">
<h1>Hello, world!</h1>
<p>This is a template for a simple marketing or informational website. It includes a large callout called the hero
unit and three supporting pieces of content. Use it as a starting point to create something more unique.</p>
<p><a class="btn btn-primary btn-large">Learn more &raquo;</a></p>
</div>
<!-- Example row of columns -->
<div class="row">
<div class="span12">
<%= yield %>
</div>
</div>
<hr>
<footer>
<p>&copy; Company 2012</p>
</footer>
</div>
<!-- /container -->
</body>
</html>