1
|
<%@ page contentType="text/html; charset=utf-8" %>
|
2
|
<%@ taglib prefix="s" uri="/struts-tags"%>
|
3
|
|
4
|
<div id="header">
|
5
|
<h1>
|
6
|
<s:url value="%{getText('logoUrl')}" id="logoUrl"/>
|
7
|
<s:a href="%{logoUrl}">
|
8
|
<img border="0" alt="logo" src='<s:property value="#application[@gr.uoa.di.driver.web.listeners.DriverContextListener@APACHE_URL]"/>/static-content/images/logos/logo.png' />
|
9
|
</s:a>
|
10
|
</h1>
|
11
|
|
12
|
<div id="loginBox" style="height:42%">
|
13
|
<s:if test="%{#application['webInterfaceLayoutManager'].layout.isViewUserProfile()}">
|
14
|
<jsp:include page="myDriver/loginBox.jsp"/>
|
15
|
</s:if>
|
16
|
</div>
|
17
|
<div id="roarQueue_container"></div>
|
18
|
|
19
|
<div id="drivermenu">
|
20
|
<div class="buttonmenu">
|
21
|
<ul>
|
22
|
<li>
|
23
|
<a class="active" href="#">
|
24
|
<span>
|
25
|
<s:text name="SEARCH_THE_REPOSITORIES"/>
|
26
|
</span>
|
27
|
</a>
|
28
|
</li>
|
29
|
<li>
|
30
|
<a href="http://www.driver-repository.eu">
|
31
|
<s:text name="LEARN_ABOUT_DRIVER"/>
|
32
|
</a>
|
33
|
</li>
|
34
|
<li>
|
35
|
<a href="http://www.driver-support.eu">
|
36
|
<s:text name="FIND_SUPPORT"/>
|
37
|
</a>
|
38
|
</li>
|
39
|
<li>
|
40
|
<a href="http://validator.driver.research-infrastructures.eu">
|
41
|
<s:text name="REGISTER_YOUR_REPOSITORY"/>
|
42
|
</a>
|
43
|
</li>
|
44
|
</ul>
|
45
|
</div>
|
46
|
</div>
|
47
|
|
48
|
</div>
|