Sha256: 62e1faef27d2fa3db27c1c389246f2430f762a91e4e78a7863693d06a9fa60eb
Contents?: true
Size: 758 Bytes
Versions: 13
Compression:
Stored size: 758 Bytes
Contents
<!DOCTYPE html> <html> <head> <title>Styleguide</title> <%= stylesheet_link_tag 'mountain_view/styleguide', media: 'all', 'data-turbolinks-track' => true %> <%= javascript_include_tag 'mountain_view/styleguide', 'data-turbolinks-track' => true %> <%= csrf_meta_tags %> </head> <body> <div class="mv-header"> <div class="mv-header__logo">STYLEGUIDE</div> </div> <div class="mv-flex-wrapper"> <div class="mv-sidebar"> <h3>COMPONENTS</h3> <ul> <%- mv_components.each do |component| %> <li> <%= link_to component.title, styleguide_path(id: component.name) %> </li> <% end %> </ul> </div> <div class="mv-main"> <%= yield %> </div> </div> </body> </html>
Version data entries
13 entries across 13 versions & 1 rubygems