use local copy of libraries
[MojoFacets.git] / templates / layouts / ui.html.ep
1 <!doctype html><html>
2 <head>
3 <meta charset=utf-8>
4 <title><%= session('path') || 'Mojo Facets' %></title>
5 <link type="text/css" href="/mojo_facets.css" rel="stylesheet" />
6
7 <!--
8 <link type="text/css" href="/css/ui-lightness/jquery-ui-1.8.custom.css" rel="stylesheet" />     
9 -->
10 <script type="text/javascript" src="/js/jquery.min.js"></script>
11 <script type="text/javascript" src="/js/jquery-ui.min.js"></script>
12
13 <!--
14 <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
15 <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.0/jquery-ui.min.js"></script>
16 -->
17
18 <script type="text/javascript">
19
20 // mock console
21 if(!window.console) {
22         window.console = new function() {
23                 this.info = function(str) {};
24                 this.debug = function(str) {};
25         };
26 }
27
28 </script>
29
30 </head>
31 <body>
32
33 <%= include 'admin' %>
34
35 <%== content %>
36
37 </body>
38 </html>