Sha256: bd26f3329896a4b376835ae980da78ec759697fc6f5d33850def1163470d81df
Contents?: true
Size: 1.04 KB
Versions: 6
Compression:
Stored size: 1.04 KB
Contents
<!DOCTYPE html> <html> <head> <title>Avo</title> <%= csrf_meta_tags %> <%= csp_meta_tag %> <%= render partial: 'layouts/avo/javascript' %> <%= javascript_pack_tag 'application' %> <%= stylesheet_pack_tag 'application', media: 'all' %> <link href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap" rel="stylesheet"> </head> <body class="bg-gray-200"> <div id="app" class="flex min-h-screen flex-row h-full"> <application-sidebar :resources='<%= Avo::App.get_resources_navigation.as_json.html_safe %>'> <%= render_logo %> </application-sidebar> <div class="flex-1 h-full overflow-auto"> <div class="relative bg-white p-2 shadow-md h-16 w-full flex items-center z-40"> <div class="ml-6"> <%= render_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"> <%= yield %> <%= render_footer %> </div> </div> </div> </body> </html>
Version data entries
6 entries across 6 versions & 1 rubygems