Sha256: 3d2988b5cbf8a24002912794f60c3a5dce247a7449476c36870efca4780a799c
Contents?: true
Size: 891 Bytes
Versions: 1
Compression:
Stored size: 891 Bytes
Contents
<%# # Application Layout This view template is used as the layout for every page that Administrate generates. By default, it renders: - Navigation - Content for a search bar (if provided by a `content_for` block in a nested page) - Flashes - Links to stylesheets and JavaScripts %> <!DOCTYPE html> <html lang="<%= I18n.locale %>"> <head> <meta charset="utf-8"> <meta name="ROBOTS" content="NOODP"> <meta name="viewport" content="initial-scale=1"> <title> <%= content_for(:title) %> - <%= Rails.application.class.parent_name.titlecase %> </title> <%= render "stylesheet" %> <%= csrf_meta_tags %> </head> <body> <div class="app-container"> <%= render "navigation" -%> <main class="main-content" role="main"> <%= content_for(:search) %> <%= render "flashes" -%> <%= yield %> </main> </div> <%= render "javascript" %> </body> </html>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
administrate-0.7.0 | app/views/layouts/administrate/application.html.erb |