Sha256: e345332939d8c1833a36d2544e350c1109b7aa07b162f50a3bc24a34a710a2e3
Contents?: true
Size: 1.14 KB
Versions: 14
Compression:
Stored size: 1.14 KB
Contents
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <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
14 entries across 14 versions & 1 rubygems