Sha256: 6a606b34733b123912efa1e748c897b793d56a20c9d29bdc7e395ef8000510d7
Contents?: true
Size: 787 Bytes
Versions: 9
Compression:
Stored size: 787 Bytes
Contents
<!DOCTYPE html> <html> <head> <title><%= page_title %></title> <%= stylesheet_link_tag "application" %> <%= javascript_include_tag "application" %> <%= csrf_meta_tags %> </head> <body> <div class="topbar"> <div class="fill"> <div class="container"> <a class="brand" href="<%= current_user ? user_root_path : root_path %>">Daily</a> </div> </div> </div> <div class="container"> <% if header_title %> <h1><%= header_title %></h1> <% end %> <% if notice %> <div class="alert-message success"> <p><%= notice %></p> </div> <% end %> <% if alert %> <div class="alert-message error"> <p><%= alert %></p> </div> <% end %> <%= yield %> </div> </body> </html>
Version data entries
9 entries across 9 versions & 1 rubygems