Sha256: c73ae1d1aa1176d2a06224313b69f3d3a288bfcb56781956924cd5ac5abbba4a

Contents?: true

Size: 1.17 KB

Versions: 6

Compression:

Stored size: 1.17 KB

Contents

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>Style Guide</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="description" content="">
    <meta name="author" content="">

    <%= stylesheet_link_tag    "application", :media => "all" %>
    <%= stylesheet_link_tag    "style_guide/application", :media => "all" %>
    <%= csrf_meta_tags %>
  </head>
  <body>
    <div class="style-guide-bar">
      <div class="style-guide-bar-container">
        <label for="style-guide-checkbox">Sections</label>
        <a class="brand" href="/">Style Guide</a>
        <input id="style-guide-checkbox" type="checkbox" />
        <div class="style-guide-bar-sections">
        <% @sections.each_with_index do |section, index| %>
          <div class="style-guide-bar-section <%= (section == @current_section) ? 'active'.html_safe : '' %>">
            <a href="<%= style_path(section.id) %>"><%= section.title %></a>
          </div>
        <% end %>
        </div>
      </div>
    </div>

<%= yield %>

    <%= javascript_include_tag "application" %>
    <%= javascript_include_tag "style_guide/application" %>
  </body>
</html>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
style-guide-0.7.3 app/views/layouts/style_guide/application.html.erb
style-guide-0.7.2 app/views/layouts/style_guide/application.html.erb
style-guide-0.7.0 app/views/layouts/style_guide/application.html.erb
style-guide-0.6.2 app/views/layouts/style_guide/application.html.erb
style-guide-0.6.1 app/views/layouts/style_guide/application.html.erb
style-guide-0.6.0 app/views/layouts/style_guide/application.html.erb