Last change
on this file since 6526 was 4283, checked in by Daimonos Tereutes, 14 years ago |
suppression des shortopentags
|
File size:
1.4 KB
|
Rev | Line | |
---|
[4283] | 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 Strict//EN"
|
---|
[1451] | 2 | "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
---|
| 3 |
|
---|
| 4 | <html>
|
---|
| 5 | <head>
|
---|
[4283] | 6 | <title><?php echo $irpg_chan;?> Idle RPG: <?php echo $irpg_page_title;?></title>
|
---|
[1451] | 7 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
---|
| 8 | <link rel="stylesheet" type="text/css" href="g7.css" />
|
---|
| 9 | </head>
|
---|
| 10 | <body>
|
---|
| 11 |
|
---|
| 12 | <!-- Idle RPG Logo -->
|
---|
| 13 |
|
---|
| 14 | <div class="head">
|
---|
| 15 | <?php
|
---|
[1453] | 16 | echo(' <img src="'. $irpg_logo .'" alt="'. $irpg_chan .' Idle RPG" title="'. $irpg_chan .' Idle RPG" width="55" height="45" />');
|
---|
[1451] | 17 | ?>
|
---|
| 18 | </div>
|
---|
| 19 |
|
---|
| 20 | <div id="menu" class="menu">
|
---|
| 21 |
|
---|
| 22 | <?php
|
---|
| 23 | $topbarurl = array(
|
---|
| 24 | 'Le jeu' => $BASEURL . 'index.php',
|
---|
| 25 | 'Les joueurs' => $BASEURL . 'players.php',
|
---|
| 26 | 'La carte' => $BASEURL . 'worldmap.php',
|
---|
| 27 | 'Les quêtes' => $BASEURL . 'quest.php',
|
---|
| 28 | 'Contact' => $BASEURL . 'contact.php',
|
---|
[1566] | 29 | 'Forum' => 'http://forum.nainwak.com/viewforum.php?f=34',
|
---|
[1451] | 30 | 'D\'autres IRPG' => 'http://idlerpg.net/others.php',
|
---|
| 31 | 'Code Source' => 'http://idlerpg.net/source.php',
|
---|
[1566] | 32 | 'Source du site' => 'http://idlerpg.net/sitesource.php'
|
---|
[1451] | 33 | );
|
---|
| 34 |
|
---|
| 35 | foreach ($topbarurl as $key => $value) {
|
---|
| 36 | if ($topbarurl[$key] == $_SERVER['PHP_SELF']) {
|
---|
| 37 | echo " <a class=\"home\" href=\"$value\">$key</a>\n";
|
---|
| 38 | }
|
---|
| 39 | else {
|
---|
| 40 | echo " <a href=\"$value\">$key</a>\n";
|
---|
| 41 | }
|
---|
| 42 | }
|
---|
| 43 | ?>
|
---|
| 44 | </div>
|
---|
| 45 |
|
---|
| 46 | <div class="content">
|
---|
Note:
See
TracBrowser
for help on using the repository browser.