Sha256: 5c60fdcde72fc14e43e51221235162176b932e28faec1adf523c9c960149d855
Contents?: true
Size: 1.36 KB
Versions: 7
Compression:
Stored size: 1.36 KB
Contents
<!DOCTYPE html> <%%= ie_html :class => 'no-js', :lang => :en do %> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <%%= csrf_meta_tag %> <title><%%= page_title "Default title" %></title> <meta name="description" content="<%%= yield :description %>"> <meta name="author" content="<%%= yield :author %>"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="shortcut icon" href="/favicon.ico"> <script>document.documentElement.className = document.documentElement.className.replace('no-js', 'js');</script> <%%= stylesheet_link_tag "application" %> <%%= javascript_include_tag "application" %> </head> <body id="<%%= page_id %>"> <%%= flash_messages %> <div id="main-wrapper"> <header id="header"> <h1><%%= link_to_unless_current 'Welcome aboard!', main_app.root_path %></h1> </header> <div id="body"> <section id="content" class="content"> <%%= yield %> </section> <aside> <%%= content_for?(:sidebar) ? yield(:sidebar) : render("shared/sidebar") %> </aside> </div> </div> <footer id="footer"> <p> This application was generated with <%%= link_to 'Playmo', 'http://github.com/tanraya/playmo' %> gem </p> </footer> </body> <%% end %>
Version data entries
7 entries across 7 versions & 1 rubygems