index.php 920 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. require __DIR__ . '/commonfoos.php';
  3. $ini_array = parse_ini_file("config.ini");
  4. $token = $ini_array["apitoken"];
  5. $names = available_seasons($host, $owner, $repo, "energy_points", $token);
  6. ?>
  7. <html>
  8. <title>Compton pictures</title>
  9. <meta name="viewport" content="width=device-width, initial-scale=1">
  10. <link rel="stylesheet" href="main.css">
  11. <body>
  12. <div class="main_block">
  13. <div class="title_block">
  14. <h1>Compton avg by seasons</h1>
  15. </div>
  16. <div class="content_block">
  17. <?php
  18. foreach ($names as $name) {
  19. echo "<div class=\"selection_item\"><a href=\"./init.php?season={$name}\">• {$name}</a></div>";
  20. }
  21. ?>
  22. </div>
  23. <br>
  24. <?php
  25. echo "<div class=\"selection_item\"><a href=\"./summary.php?season=" . end($names) . "\">Season summary</a></div>";
  26. ?>
  27. </div>
  28. </body>
  29. </html>