Sha256: 21981c0e1d27dde7f5777775ef13ba335ec969bd85c891ecf0d864c00810fcdd
Contents?: true
Size: 1.11 KB
Versions: 4
Compression:
Stored size: 1.11 KB
Contents
<!DOCTYPE html> <html> <head> <title><%= CONFIG.app_path %> - <%= Rails.env %></title> <meta name="viewport" content="user-scalable=no, initial-scale=1"> <%= stylesheet_link_tag "application" %> </head> <body> <%= yield %> <div id="app_wrapper"> <div id="flash" style="display:none"></div> <div id="view_wrapper"></div> <%= render "shared/footer" %> <div id="loading" class="loading" style="display:none"> <div id="loading_text" class="loading_text">Loading…</div> </div> </div> <div id="tmp" style="display:none"></div> <%= javascript_include_tag "application" %> <%# Allows us to use mock on test or production without screwing up caching of page. %> <script> if (Application.params.mock === 'true' || '<%= request.host %>' == 'localhost' || '<%= request.host %>'.indexOf('.dev') !== -1) { document.write("<link rel='stylesheet' href='/<%= CONFIG.app_path %>/assets/mock.css'>"); document.write("<script src='/<%= CONFIG.app_path %>/assets/core/Mock.js'><\/script>"); } </script> </body> </html>
Version data entries
4 entries across 4 versions & 1 rubygems