Skip to content

Instantly share code, notes, and snippets.

@pnegri
Created December 11, 2014 00:22
Show Gist options
  • Save pnegri/379a57cad228d564ab71 to your computer and use it in GitHub Desktop.
Save pnegri/379a57cad228d564ab71 to your computer and use it in GitHub Desktop.
<!doctype html>
<html>
<head>
<title>The Dolus Project</title>
<%= stylesheet_link_tag '//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css', media: 'all' %>
<%= stylesheet_link_tag '//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css', media: 'all' %>
<%= stylesheet_link_tag 'application', media: 'all' %>
<%= javascript_include_tag 'https://code.jquery.com/jquery-1.11.1.min.js' %>
<%= javascript_include_tag '//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js' %>
<%= javascript_include_tag 'https://maps.googleapis.com/maps/api/js?v=3.exp' %>
<%= javascript_include_tag 'application' %>
<%= include_gon %>
<%= csrf_meta_tags %>
</head>
<body>
<div class="fixed-container">
<div class="header">
<h1>iugu Dolus</h1>
</div>
<div class="menu">
<ul class="nav nav-pills nav-stacked">
<li class="active"><a href='<%= dashboard_root_url %>'>Dashboard<span class="badge pull-right">0</span></a></li>
</ul>
</div>
<div class="main">
<%= yield %>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment