Subversion Repositories SvarDOS

Rev

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

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>SvarDOS</title>
    <meta name="keywords" content="svardos,svarog386,freedos">
    <meta name="author" content="Mateusz Viste">
    <meta name="robots" content="index, follow">
    <meta charset="UTF-8">
    <link rel="icon" type="image/png" href="icon.png">
    <link rel="stylesheet" href="style.css">
  </head>
  <body>

    <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>

<?php

    $p = '';
    if (! empty($_GET['p'])) $p = $_GET['p'];

    if ($p == 'why') {
      readfile('index-why.htm');
    } else if ($p == 'tech') {
      include 'index-tech.php';
    } else if ($p == 'nls') {
      readfile('index-nls.htm');
    } else if ($p == 'test') {
      include 'index-test.php';
    } else { // else display the front page
      //include 'index-main.php';
      include 'wip.htm';
    }
?>
  </body>
</html>