Sha256: d25a3d95649f7f77636406766eeb07fc2f61cc680e06f56f7cb0ce081a47ba92
Contents?: true
Size: 835 Bytes
Versions: 165
Compression:
Stored size: 835 Bytes
Contents
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title><%= content_for?(:title) ? yield(:title) : "Dummyapp" %></title> <meta name="description" content="<%= content_for?(:description) ? yield(:description) : "Dummyapp" %>"> <%= stylesheet_link_tag "application", :media => "all" %> <%= javascript_include_tag "application" %> <%= csrf_meta_tags %> <%= yield(:head) %> </head> <body class="<%= controller_name %> <%= action_name %>"> <div id="container" class="container"> <header> <%= render 'layouts/navigation' %> <%= render 'layouts/messages' %> </header> <div id="main" role="main"> <%= yield %> </div> <footer> </footer> </div> <!--! end of #container --> </body> </html>
Version data entries
165 entries across 165 versions & 2 rubygems