You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.9KB

  1. <?php
  2. if (file_exists("/home/falktx/Personal/FOSS/")) {
  3. $ROOT = "/distrho";
  4. } else {
  5. $ROOT = "";
  6. }
  7. $VERSION_DPF = "v1.1";
  8. $VERSION_PORTS = "2018-04-16";
  9. $URL_DPF = "https://github.com/DISTRHO/DPF-Plugins/releases/download/" . $VERSION_DPF;
  10. $URL_PORTS = "https://github.com/DISTRHO/DISTRHO-Ports/releases/download/" . $VERSION_PORTS;
  11. ?>
  12. <!DOCTYPE html>
  13. <html lang="en">
  14. <head>
  15. <title>DISTRHO - Cross-Platform Audio Plugins</title>
  16. <meta charset="utf-8">
  17. <link rel="stylesheet" href="<?php echo $ROOT; ?>/css/reset.css" type="text/css" media="all">
  18. <link rel="stylesheet" href="<?php echo $ROOT; ?>/css/style.css" type="text/css" media="all">
  19. <?php if ($CURRENT_PAGE == "index") { ?>
  20. <link rel="stylesheet" href="<?php echo $ROOT; ?>/css/style-news-mini.css" type="text/css" media="all">
  21. <?php } else if ($CURRENT_PAGE == "news") { ?>
  22. <link rel="stylesheet" href="<?php echo $ROOT; ?>/css/style-news-full.css" type="text/css" media="all">
  23. <?php } ?>
  24. <link rel='stylesheet' href='<?php echo $ROOT; ?>/fonts/fonts.css' type='text/css' media="all">
  25. </head>
  26. <body>
  27. <header>
  28. <div class="container">
  29. <h1><a href="<?php echo $ROOT; ?>/"><img src="<?php echo $ROOT; ?>/images/distrho-logo.png" alt="DISTRHO"/></a></h1>
  30. <nav>
  31. <ul>
  32. <li><a href="<?php echo $ROOT; ?>/" <?php if ($CURRENT_PAGE == "index") { ?> class="current" <?php } ?>>Home</a></li>
  33. <li><a href="<?php echo $ROOT; ?>/news" <?php if ($CURRENT_PAGE == "news") { ?> class="current" <?php } ?>>News</a></li>
  34. <li><a href="<?php echo $ROOT; ?>/plugins" <?php if ($CURRENT_PAGE == "plugins") { ?> class="current" <?php } ?>>Plugins</a></li>
  35. <li><a href="<?php echo $ROOT; ?>/ports" <?php if ($CURRENT_PAGE == "ports") { ?> class="current" <?php } ?>>Ports</a></li>
  36. <li><a href="<?php echo $ROOT; ?>/about" <?php if ($CURRENT_PAGE == "about") { ?> class="current" <?php } ?>>About</a></li>
  37. </ul>
  38. </nav>
  39. </div>
  40. </header>