Sha256: f9d8029144636cf0868d1038ad5008b5ddf9c85711339c02c9fbff8472ca5e7e
Contents?: true
Size: 677 Bytes
Versions: 15
Compression:
Stored size: 677 Bytes
Contents
<!DOCTYPE html> <html> <head> <title>Blogo</title> <%= javascript_include_tag "blogo/admin/application" %> <% if Blogo.config.use_ckeditor %> <%= javascript_include_tag "blogo/admin/ckeditor" %> <% end %> <%= stylesheet_link_tag "blogo/admin" %> <%= csrf_meta_tags %> </head> <body> <% if blogo_current_user %> <div id="admin-menu"> <%= render "blogo/admin/shared/nav_bar" %> </div> <% end %> <div id="admin-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
15 entries across 15 versions & 1 rubygems