main
 1<!DOCTYPE html>
 2<html lang="en">
 3  <head>
 4    <meta charset="utf-8" />
 5    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 6
 7    <title><%= content_for?(:title) ? yield(:title) : "malwer" %></title>
 8
 9    <%= stylesheet_link_tag    "application" %>
10    <%= javascript_include_tag "vendor/modernizr" %>
11    <%= javascript_include_tag "application", 'data-turbolinks-track' => true %>
12    <%= javascript_include_tag "//www.google.com/jsapi", "chartkick" %>
13    <%= csrf_meta_tags %>
14  </head>
15
16  <body>
17    <div class="contain-to-grid sticky">
18      <nav class="top-bar" data-topbar role="navigation" data-options="sticky_on: large">
19        <ul class="title-area">
20          <li class="name">
21            <h1><%= link_to "malwer", root_path %></h1>
22          </li>
23          <!-- Remove the class "menu-icon" to get rid of menu icon. Take out "Menu" to just have icon alone -->
24          <li class="toggle-topbar menu-icon"><a href="#"><span>Menu</span></a></li>
25        </ul>
26
27        <section class="top-bar-section">
28          <ul class="left">
29            <li><%= link_to "Agents", agents_path %></li>
30            <li><%= link_to "Dispositions", dispositions_path %></li>
31          </ul>
32        </section>
33      </nav>
34    </div>
35
36    <%= yield %>
37
38  </body>
39</html>