Sha256: 8381c212ca3a41c776af19e90da676a18ec67b51537375a5b7a4662c498ec271
Contents?: true
Size: 558 Bytes
Versions: 5
Compression:
Stored size: 558 Bytes
Contents
<!DOCTYPE html> <html> <head> <title>Monologue</title> <%= stylesheet_link_tag "monologue/admin/application" %> <%= javascript_include_tag "monologue/admin/application" %> <%= csrf_meta_tags %> </head> <body> <% if current_user %> <%= render "layouts/monologue/admin/nav_bar" %> <% end %> <div class="container"> <% flash.each do |name, msg| %> <%= content_tag :div, msg, :id => "flash_#{name}", :class => (name == :notice ? "alert alert-info" : "alert alert-error") %> <% end %> <%= yield %> </div> </body> </html>
Version data entries
5 entries across 5 versions & 1 rubygems