added faceted links
[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 <script type="text/javascript" src="/js/jquery-1.4.2.min.js"></script>
10 <script type="text/javascript" src="/js/jquery-ui-1.8.custom.min.js"></script>
11 -->
12
13 <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
14 <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.0/jquery-ui.min.js"></script>
15
16 <script type="text/javascript">
17
18 // mock console
19 if(!window.console) {
20         window.console = new function() {
21                 this.info = function(str) {};
22                 this.debug = function(str) {};
23         };
24 }
25
26 </script>
27
28 </head>
29 <body>
30
31 <%= include 'admin' %>
32
33 <%== content %>
34
35 </body>
36 </html>