38 lines
684 B
Plaintext
38 lines
684 B
Plaintext
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>Packer</title>
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<meta name="description" content="">
|
||
|
<meta name="author" content="">
|
||
|
|
||
|
<!-- Le styles -->
|
||
|
<%= stylesheet_link_tag "bootstrap.min" %>
|
||
|
<style type="text/css">
|
||
|
body {
|
||
|
padding-top: 20px;
|
||
|
padding-bottom: 40px;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
|
||
|
<div class="container">
|
||
|
<div class="row">
|
||
|
<div class="span12">
|
||
|
<%= yield %>
|
||
|
</div><!--/span-->
|
||
|
</div><!--/row-->
|
||
|
|
||
|
<hr>
|
||
|
|
||
|
<footer>
|
||
|
<p>© Mitchell Hashimoto 2013</p>
|
||
|
</footer>
|
||
|
</div><!--/.fluid-container-->
|
||
|
</body>
|
||
|
</html>
|
||
|
|