Subversion Repositories SvarDOS

Rev

Rev 110 | Rev 179 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3 mv_fox 1
<!DOCTYPE html>
2
<html lang="en">
3
  <head>
175 mateuszvis 4
    <title>SvarDOS</title>
5
    <meta name="keywords" content="svardos,svarog386,freedos">
3 mv_fox 6
    <meta name="author" content="Mateusz Viste">
7
    <meta name="robots" content="index, follow">
8
    <meta charset="UTF-8">
9
    <link rel="icon" type="image/png" href="icon.png">
10
    <link rel="stylesheet" href="style.css">
11
  </head>
12
  <body>
13
 
175 mateuszvis 14
    <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>
3 mv_fox 15
 
14 mv_fox 16
<?php
3 mv_fox 17
 
18
    $p = '';
19
    if (! empty($_GET['p'])) $p = $_GET['p'];
20
 
21
    if ($p == 'why') {
22
      readfile('index-why.htm');
23
    } else if ($p == 'tech') {
24
      include 'index-tech.php';
106 mv_fox 25
    } else if ($p == 'nls') {
26
      readfile('index-nls.htm');
18 mv_fox 27
    } else if ($p == 'test') {
28
      include 'index-test.php';
3 mv_fox 29
    } else { // else display the front page
175 mateuszvis 30
      //include 'index-main.php';
31
      include 'wip.htm';
14 mv_fox 32
    }
33
?>
3 mv_fox 34
  </body>
35
</html>