Sha256: 0ce00bd08bf85b9aa4e4b343ab0cb1ed53b321685bc2b2a9746d12505803963c
Contents?: true
Size: 854 Bytes
Versions: 9
Compression:
Stored size: 854 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) %> - <%= application_title %> </title> <%= render "stylesheet" %> <%= csrf_meta_tags %> </head> <body> <%= render "icons" %> <div class="app-container"> <%= render "navigation" -%> <main class="main-content" role="main"> <%= render "flashes" -%> <%= yield %> </main> </div> <%= render "javascript" %> </body> </html>
Version data entries
9 entries across 9 versions & 2 rubygems