source: trunk/grails-app/views/layouts/dialog.gsp @ 1545

Last change on this file since 1545 was 1430, checked in by work@…, 13 years ago
  • set keyword expansion
  • Property svn:keywords set to Rev Author Date
File size: 1.0 KB
Line 
1<%@ page contentType="text/html;charset=UTF-8" %>
2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
3"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4<html xmlns="http://www.w3.org/1999/xhtml" lang="en-EN" xml:lang="en-EN">
5 <head>
6  <title><g:layoutTitle default="Grails"/></title><g:if env="production">
7  <link rel="stylesheet" href="${resource(dir: 'css', file: 'dialog.min.css')}"/>
8  </g:if><g:else>
9  <link rel="stylesheet" href="${resource(dir: 'css', file: 'dialog.css')}"/>   
10  </g:else>
11  <g:javascript library="jquery" plugin="jquery"/>
12  <script type="text/javascript">var baseUrl = '${resource(dir: '')}';</script>
13  <script src="${createLinkTo(dir: 'js', file: 'jquery-ui-1.8.7.custom.min.js')}" type="text/javascript"></script>
14  <script type="text/javascript" src="${resource(dir: 'js', file: 'disableKeys.js')}"></script>
15  <link rel="stylesheet" href="${createLinkTo(dir: 'css/cupertino', file: 'jquery-ui-1.8.7.custom.css')}"/>
16  <g:layoutHead/>
17 </head>
18 <body>
19 <g:layoutBody/>
20 </body>
21</html>
Note: See TracBrowser for help on using the repository browser.