mirror of
https://github.com/danbee/danbarberphoto
synced 2025-03-04 08:49:07 +00:00
39 lines
898 B
Plaintext
39 lines
898 B
Plaintext
<%#
|
|
# Application Layout
|
|
|
|
This view template is used as the layout
|
|
for every page that Administrate generates.
|
|
|
|
By default, it renders:
|
|
- Sidebar for 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>
|
|
Sign In - <%= Rails.application.class.parent_name.titlecase %>
|
|
</title>
|
|
<%= render "admin/application/stylesheet" %>
|
|
<%= csrf_meta_tags %>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="app-container">
|
|
<main class="main-content main-content--login" role="main">
|
|
<%= render "admin/application/flashes" -%>
|
|
<%= yield %>
|
|
</main>
|
|
</div>
|
|
|
|
<%= render "admin/application/javascript" %>
|
|
</body>
|
|
</html>
|