-
Notifications
You must be signed in to change notification settings - Fork 6
/
404.php
executable file
·38 lines (29 loc) · 1.27 KB
/
404.php
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
<?php
$title = "Globus: Error 404 File not found";
$section = "section-1";
include_once( "./include/local.inc" );
include_once( $SITE_PATHS["SERV_INC"].'header.inc' );
?>
<div id="main">
<h1 class="first">Error 404 - File not found</h1>
<p>
The page you requested could not be found. We have recently reorganized
the website, which means that the page you are looking for probably exists
in another location. The following suggestions might help you find what
you are looking for:
</p>
<ul>
<li>Use the navigation bar at the top of the page.</li>
<li>Use the new <a href="<?=$SITE_PATHS["WEB_ROOT"]."site_map.php"; ?>">site map</a>.</li>
<li>Use the site search.</li>
<li>If you got the error by navigating the Globus website and think
that the link is broken, please report it to
<a href="mailto:[email protected]">[email protected]</a>.
</ul>
<p>For <b>GT4 documentation</b>, go to
<a href="<?=$SITE_PATHS["WEB_TOOLKIT"]."docs/4.0/"; ?>">http://www.globus.org/toolkit/docs/4.0/</a>.</p>
<p>For <b>research papers</b>, go to
<a href="<?=$SITE_PATHS["WEB_ALLIANCE"]."publications/papers.php"; ?>">http://www.globus.org/alliance/publications/papers.php</a>.</p>
</ul>
</div>
<?php include("./include/footer.inc"); ?>