Subversion Repositories SvarDOS

Rev

Rev 179 | Rev 285 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 179 Rev 188
Line 8... Line 8...
8
    <meta charset="UTF-8">
8
    <meta charset="UTF-8">
9
    <link rel="stylesheet" href="style.css">
9
    <link rel="stylesheet" href="style.css">
10
  </head>
10
  </head>
11
  <body>
11
  <body>
12
 
12
 
13
    <p style="margin: 0 0 -1em auto; font-size: 0.9em; text-align: right;"><a href="/">Main page</a> I <a href="?p=why">Why SvarDOS</a> I <a href="?p=tech">Tech</a> I <a href="?p=nls">NLS</a></p>
13
    <p style="margin: 0 0 -1em auto; font-size: 0.9em; text-align: right;"><a href="/">Main page</a> I <a href="?p=why">Why SvarDOS</a> I <a href="?p=repo">Repo</a> I <a href="?p=tech">Tech</a> I <a href="?p=nls">NLS</a></p>
14
 
14
 
15
<?php
15
<?php
16
 
16
 
17
    $p = '';
17
    $p = '';
18
    if (! empty($_GET['p'])) $p = $_GET['p'];
18
    if (! empty($_GET['p'])) $p = $_GET['p'];
Line 21... Line 21...
21
      readfile('index-why.htm');
21
      readfile('index-why.htm');
22
    } else if ($p == 'tech') {
22
    } else if ($p == 'tech') {
23
      include 'index-tech.php';
23
      include 'index-tech.php';
24
    } else if ($p == 'nls') {
24
    } else if ($p == 'nls') {
25
      readfile('index-nls.htm');
25
      readfile('index-nls.htm');
-
 
26
    } else if ($p == 'repo') {
-
 
27
      include 'index-repo.php';
26
    } else if ($p == 'test') {
28
    } else if ($p == 'test') {
27
      include 'index-main.php';
29
      include 'index-main.php';
28
    } else { // else display the front page
30
    } else { // else display the front page
29
      //include 'index-main.php';
31
      include 'index-main.php';
30
      include 'wip.htm';
-
 
31
    }
32
    }
32
?>
33
?>
33
  </body>
34
  </body>
34
</html>
35
</html>