source: trunk/grails-app/views/layouts/main.gsp @ 3

Last change on this file since 3 was 3, checked in by robert@…, 12 years ago

Externalized configuration; improved assay view (detail views of runs and samples); implemented uploading and parsing of FASTA and QUAL files

File size: 1.9 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="Metagenomics | dbNP"/></title>
7               
8                <link rel="stylesheet" href="${resource(dir: 'css', file: session.style + '.css')}"/>
9                <link rel="stylesheet" href="${resource(dir: 'css', file: 'login_panel.css')}"/>
10                <link rel="shortcut icon" href="${resource(dir: 'images', file: 'favicon.ico')}" type="image/x-icon"/>
11               
12                <g:javascript library="jquery" plugin="jquery"/>
13                <jqui:resources theme="cupertino" themeCss="${resource(dir: 'css/cupertino', file: 'jquery-ui-1.8.7.custom.css' )}" />
14
15                <link rel="stylesheet" href="${resource(dir: 'css/datatables', file: 'demo_table_jui.css')}"/>
16                                       
17                <script type="text/javascript" src="${resource(dir: 'js', file: 'topnav.js')}"></script>
18                <script type="text/javascript" src="${resource(dir: 'js', file: 'jquery.dataTables.min.js')}"></script>
19                <script type="text/javascript">
20                        var baseUrl = '${resource(dir: '')}';
21                </script>
22                <script type="text/javascript" src="${resource(dir: 'js', file: 'paginate.js')}"></script>
23               
24                <g:layoutHead/>
25       
26        </head>
27        <body>
28                <g:render template="/common/login_panel"/>
29                <div class="container">
30                        <div id="header">
31                                <g:render template="/common/topnav"/>
32                                <g:render template="/common/info"/>
33                        </div>
34                       
35                        <div id="content">
36                                <g:if test="${lastSynchronized}">
37                                        <p>Last full synchronization: ${lastSynchronized}</p>
38                                </g:if>
39                                <g:if test="${flash.error}">
40                                        <p class="error">${flash.error}</p>
41                                </g:if>
42                                <g:if test="${flash.message}">
43                                        <p class="message">${flash.message}</p>
44                                </g:if>
45                               
46                                <g:layoutBody/>
47                        </div>
48
49                        <div id="footer">
50                                Copyright &copy; 2010 - <g:formatDate format="yyyy" date="${new Date()}"/> TNO. All rights reserved.
51                        </div>
52                </div>
53        </body>
54</html>
Note: See TracBrowser for help on using the repository browser.