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