sports_db 0.2 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,28 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <title><%= CONFIG.app_path.downcase %></title>
5
- <meta id="meta_viewport" name="viewport" content="user-scalable=no, initial-scale=1">
6
- <%= stylesheet_link_tag "application" %>
7
- </head>
8
- <body>
9
- <%= yield %>
10
- <loading id="loading" style="display:none"><loading_text id="loading_text">Loading&hellip;</loading_text></loading>
11
- <div id="flash" style="display:none"></div>
12
- <div id="buffer" style="display:none"></div>
13
- <div id="tmp" style="display:none"></div>
14
- <%= javascript_include_tag "application" %>
15
- <%# Allows us to use mock on test or production without screwing up caching of page. %>
16
- <script>
17
- if (Application.params.mock) {
18
- document.write("<link rel='stylesheet' href='/<%= CONFIG.app_path %>/assets/mock.css'>");
19
- document.write("<script src='/<%= CONFIG.app_path %>/assets/core/Mock.js'><\/script>");
20
- }
21
- </script>
22
- <%# turn on mock automatically if using localhost or pow %>
23
- <% if request.host == 'localhost' || request.host.include?(".dev") %>
24
- <link rel='stylesheet' href='/<%= CONFIG.app_path %>/assets/mock.css'>
25
- <script src='/<%= CONFIG.app_path %>/assets/core/Mock.js'></script>
26
- <% end %>
27
- </body>
28
- </html>