Sha256: b49f7d478d298c9bc338022240b694d429eedaf6c3f28eafcfdee73a94f34c37

Contents?: true

Size: 1.67 KB

Versions: 5

Compression:

Stored size: 1.67 KB

Contents

<!DOCTYPE html>
<html>
<head>
  <%= display_meta_tags site: Avo.configuration.app_name, reverse: true, separator: "—" %>

  <%= csrf_meta_tags %>
  <%= csp_meta_tag %>

  <%= render partial: 'avo/partials/javascript' %>

  <%= javascript_pack_tag 'application' %>
  <%= stylesheet_pack_tag 'application', media: 'all' %>
</head>
<body class="bg-blue-gray-200">

<div id="app" class="flex min-h-screen flex-row h-full">
  <div class="flex flex-1 w-full">
    <%= render partial: 'avo/sidebar/sidebar' %>

    <div class="flex-1 flex flex-col h-full overflow-auto">
      <div class="relative bg-white p-2 shadow-md h-16 w-full flex flex-shrink-0 items-center z-50" v-if="layout !== 'blank'">
        <div class="ml-6">
          <%= render partial: "avo/partials/header" %>
        </div>
        <div class="flex-1 flex justify-center">
          <div class="w-64">
            <%# <resources-search :global="true"> %>
          </div>
        </div>
      </div>

      <div class="content p-8 flex-1 flex flex-col justify-between items-stretch <%= @container_classes %>">
        <%= render partial: "avo/partials/custom_tools_alert" if @custom_tools_alert_visible %>

        <div class="flex flex-1 flex-col justify-between items-stretch">
          <%= yield %>
          <%= render partial: "avo/partials/footer" %>
        </div>
      </div>
    </div>
  </div>
  <%= turbo_frame_tag 'actions_show' %>
  <%= turbo_frame_tag 'attach_modal' %>
  <%= turbo_frame_tag 'destroy_attachment_form' %>

  <%= turbo_frame_tag 'alerts' do %>
    <%= render partial: 'avo/partials/alerts' %>
  <% end %>
</div>

<%= render partial: "avo/partials/scripts" %>
<!-- Avo version: <%= Avo::VERSION %> -->
</body>
</html>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
avo-1.2.10 app/views/layouts/avo/application.html.erb
avo-1.2.9 app/views/layouts/avo/application.html.erb
avo-1.2.8 app/views/layouts/avo/application.html.erb
avo-1.2.7 app/views/layouts/avo/application.html.erb
avo-1.2.6 app/views/layouts/avo/application.html.erb