Sha256: fc20c185319c433f947a7978b5bb16a3a8c74d02e00b0488915343bc7e6a4e02

Contents?: true

Size: 1.46 KB

Versions: 2

Compression:

Stored size: 1.46 KB

Contents

<!DOCTYPE html>
<html lang="<%= I18n.locale %>">
<head>
  <title>Admin</title>
  <meta name="viewport" content="width=device-width,initial-scale=1">
  <%= csrf_meta_tags %>
  <%= csp_meta_tag %>

  <%= stylesheet_pack_tag 'admin', media: 'all', 'data-turbo-track': 'reload' %>
  <%= javascript_pack_tag 'admin', 'data-turbo-track': 'reload' %>
</head>

<body>
<%= render 'headmin/layout/main' do %>
  <%= render 'headmin/layout/sidebar', logo: inline_svg_tag('logo.svg') do %>
    <%= render 'headmin/layout/sidebar/menu' do %>
      <%= render 'headmin/layout/sidebar/menu/item', name: t('.dashboard'), link: admin_root_path, icon: 'speedometer' %>
      <div class="d-block d-md-none">
        <%= render 'headmin/layout/sidebar/menu/locale' do end %>
        <%= render 'headmin/layout/sidebar/menu/account' do end %>
      </div>
    <% end %>
  <% end %>
  <%= render 'headmin/layout/body' do %>
    <%= render 'headmin/layout/header' do %>
      <%= render 'headmin/layout/header/locale' do end %>
      <%= render 'headmin/layout/header/account' do end %>
    <% end %>
    <%= render 'headmin/layout/content' do %>
      <%= render 'headmin/notifications' %>
      <%= yield %>
    <% end %>
    <%= render 'headmin/layout/footer', class: 'text-secondary' do %>
      <%= bootstrap_icon('question-circle') %>
      <a class="text-secondary" href="mailto:info@insiting.com" title="<%= t('.help') %>">
        <%= t('.help') %>
      </a>
    <% end %>
  <% end %>
<% end %>
</body>
</html>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
headmin-0.2.9 app/views/examples/admin.html.erb
headmin-0.2.8 app/views/examples/admin.html.erb