1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- require __DIR__ . '/commonfoos.php';
- $ini_array = parse_ini_file("config.ini");
- $token = $ini_array["apitoken"];
- $names = available_seasons($host, $owner, $repo, "energy_points", $token);
- ?>
- <html>
- <title>Compton pictures</title>
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <link rel="stylesheet" href="main.css">
- <body>
- <div class="main_block">
- <div class="title_block">
- <h1>Compton avg by seasons</h1>
- </div>
- <div class="content_block">
- <?php
- foreach ($names as $name) {
- echo "<div class=\"selection_item\"><a href=\"./init.php?season={$name}\">• {$name}</a></div>";
- }
- ?>
- </div>
- <br>
- <?php
- echo "<div class=\"selection_item\"><a href=\"./summary.php?season=" . end($names) . "\">Season summary</a></div>";
- ?>
- </div>
- </body>
- </html>
|