mirror of
https://github.com/danbee/danbarberphoto
synced 2025-03-04 08:49:07 +00:00
49 lines
1.2 KiB
Plaintext
49 lines
1.2 KiB
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><%= content_for(:title) %> | <%= Rails.application.class.parent_name.titlecase %></title>
|
|
<%= stylesheet_link_tag "administrate/application", media: "all" %>
|
|
<%= stylesheet_link_tag "administrate/overrides", media: "all" %>
|
|
<%= csrf_meta_tags %>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="app-container">
|
|
|
|
<div class="sidebar">
|
|
<%= render "sidebar" -%>
|
|
<%= content_tag :div, class: :logout do %>
|
|
<%= link_to "Log out", session_path, method: :delete %>
|
|
<% end %>
|
|
</div>
|
|
|
|
<main class="main-content" role="main">
|
|
<%= content_for(:search) %>
|
|
<%= render "flashes" -%>
|
|
<%= yield %>
|
|
</main>
|
|
|
|
</div>
|
|
|
|
<%= render "javascript" %>
|
|
</body>
|
|
</html>
|