vmpooler/lib/vmpooler/views/layout.erb
2014-03-05 12:57:25 -08:00

31 lines
695 B
Text

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta charset='utf-8'>
<link rel='stylesheet' type='text/css' href='/dashboard.css' />
<script type='text/javascript' src='http://code.jquery.com/jquery-latest.min.js'></script>
<script type='text/javascript' src='http://d3js.org/d3.v3.min.js'></script>
</head>
<body>
<div id='wrap'>
<div id='content'>
<div id='header'>
<embed src='/img/logo.jpg' width='200px' height='150px' class='logo' />
<div class='text'><%= site_name %></div>
</div>
<%= yield %>
</div>
</div>
</body>
</html>