-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
82 lines (81 loc) · 3.09 KB
/
index.php
File metadata and controls
82 lines (81 loc) · 3.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<?php
/*------------------------------------------------------------------------*
* © 2010 University of Limerick. All rights reserved. This material may *
* not be reproduced, displayed, modified or distributed without the *
* express prior written permission of the copyright holder. *
*------------------------------------------------------------------------*/
require_once('./conf.php');
;?>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title><?php print BASE_TITLE; ?></title>
<link href="css/style.css" rel="stylesheet" type="text/css" /><link type="text/css" href="css/ui-lightness/jquery-ui-1.8.4.custom.css" rel="stylesheet" /><script type="text/javascript" src="js/jquery.js"></script><script type="text/javascript" src="js/jquery-ui-1.8.4.custom.min.js"></script><script type="text/javascript">
$(document).ready(function() {
$("#latest").load("latest.php");
var refreshId = setInterval(function() {
$("#latest").load("latest.php");
}, 9000);
});
</script>
</head>
<body>
<div id="wrapper">
<div id="content">
<div id="header"> <h4 class="lang"><?php $i=0; foreach($languages as $code => $svrpath) { $i++; print '<a href="'.$svrpath.'/'.curPageName().'" >'.$code.'</a>';
if ($i<count($languages)) print " | "; };?> </h4>
<div id="logo">
<h1><?php print BASE_LOCCONNECT;?></h1>
<h4><?php print BASE_MOTO;?></h4>
</div>
<div id="links">
<ul>
<li> <a href="./index.php"><?php print BASE_HOME;?></a> </li>
<li> <a href="./prompt.php"><?php print BASE_NEW_PROJECT;?></a> </li>
<li> <a href="./trackproj.php"><?php print BASE_TRACK_PROJECTS;?></a></li>
<li> <a href="./about.php"><?php print BASE_ABOUT;?></a> </li>
</ul>
</div>
</div>
<div id="mainimg">
<h3><?php print BASE_H1;?></h3>
<h4><?php print BASE_H2;?></h4>
</div>
<div id="contentarea">
<div id="leftbar">
<h2> <?php print BASE_INDEX_WHAT_IS;?></h2>
<p style="text-align: left;">
<?php print BASE_INDEX_DESC;?>
<br />
<br />
</p>
<div class="ads">
<table style="width: 100px; text-align: left; margin-left: auto; margin-right: auto;" border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td style="text-align: left;"><img style="width: 114px; height: 34px;" alt="localisation research centre logo" title="Localisation Research Centre" src="images/lrclogo.jpg" /><br />
</td>
<td> </td>
<td style="text-align: right;"><img style="width: 101px; height: 34px;" alt="CNGL Logo" title="Centre for Next Generation Localisation" src="images/cngllogo.jpg" /><br />
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div id="rightbar">
<h2><?php print BASE_LATEST_PROJECTS;?></h2>
<div id="latest"></div>
</div>
</div>
<div id="bottom">
<div id="email"><a href="mailto:<?php print BASE_EMAIL;?>"><?php print BASE_EMAIL;?></a></div>
<div id="validtext">
<p>Valid <a href="http://validator.w3.org/check?uri=referer">XHTML</a>
| <a href="http://jigsaw.w3.org/css-validator/check/referer">CSS</a></p>
</div>
</div>
</div>
</div>
</body></html>