1
|
<%@ taglib prefix="s" uri="/struts-tags"%>
|
2
|
<%@ page contentType="text/html; charset=UTF-8"%>
|
3
|
<%@ taglib prefix="sx" uri="/struts-dojo-tags"%>
|
4
|
|
5
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
6
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
7
|
|
8
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
9
|
|
10
|
<head>
|
11
|
<title>DRIVER Search Results</title>
|
12
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
13
|
<sx:head debug="false" parseContent="true" />
|
14
|
<script type="text/javascript" src="<s:property value="#application[@gr.uoa.di.driver.web.listeners.DriverContextListener@APACHE_URL]"/>/static-content/js/mootools-1.2.3-core.js"></script>
|
15
|
<script type="text/javascript" src="<s:property value="#application[@gr.uoa.di.driver.web.listeners.DriverContextListener@APACHE_URL]"/>/static-content/js/mootools-1.2.3.1-more.js"></script>
|
16
|
|
17
|
<link href='<s:property value="#application[@gr.uoa.di.driver.web.listeners.DriverContextListener@APACHE_URL]"/>/static-content/assets/<s:property value="#application['webInterfaceLayoutManager'].cssFileName" />' rel="stylesheet" type="text/css" />
|
18
|
<link rel="shortcut icon" href="<s:property value="#application[@gr.uoa.di.driver.web.listeners.DriverContextListener@APACHE_URL]"/>/static-content/images/favicon.ico"/>
|
19
|
<link href="<s:property value="#application[@gr.uoa.di.driver.web.listeners.DriverContextListener@APACHE_URL]"/>/static-content/js/Roar/Roar.css" rel="stylesheet" type="text/css" />
|
20
|
<script type="text/javascript" src="<s:property value="#application[@gr.uoa.di.driver.web.listeners.DriverContextListener@APACHE_URL]"/>/static-content/js/Roar/Roar.js"></script>
|
21
|
<script type="text/javascript" src="<s:property value="#application[@gr.uoa.di.driver.web.listeners.DriverContextListener@APACHE_URL]"/>/static-content/js/dropbox.js"></script>
|
22
|
<script type="text/javascript" src="<s:property value="#application[@gr.uoa.di.driver.web.listeners.DriverContextListener@APACHE_URL]"/>/static-content/js/criteriaDisplay.js"></script>
|
23
|
</head>
|
24
|
|
25
|
<body onload="init();">
|
26
|
<div id="center">
|
27
|
<div id="wrapper">
|
28
|
<div class="wrapper_shadowleft">
|
29
|
<div class="wrapper_shadowright">
|
30
|
|
31
|
<div id="container">
|
32
|
<jsp:include page="/pages/banner.jsp" />
|
33
|
<jsp:include page="/pages/menu.jsp" />
|
34
|
|
35
|
<div id="leftcolumn">
|
36
|
<s:action name="SearchFormPage" executeResult="true" />
|
37
|
</div>
|
38
|
|
39
|
<div id="maincolumn2">
|
40
|
<s:action name="SearchResultsPage" executeResult="true"/>
|
41
|
</div>
|
42
|
</div>
|
43
|
|
44
|
<div id="footer">
|
45
|
<s:action name="FooterPage" executeResult="true"/>
|
46
|
</div>
|
47
|
|
48
|
</div>
|
49
|
</div>
|
50
|
</div>
|
51
|
</div>
|
52
|
</body>
|
53
|
|
54
|
</html>
|