index.php 466 B

1234567891011121314151617
  1. <?php
  2. require_once("../api.php");
  3. $res = (array)get("top/illust");
  4. $out = ["title" => "トップ", "desc" => ""];
  5. ?>
  6. <?php include("../include/header.php"); ?>
  7. <div class="page">
  8. <?php
  9. foreach ($res["body"]->thumbnails->illust as $o) {
  10. ?>
  11. <a href="/artworks?id=<?= $o->id ?>"><img src="/proxy.php?url=<?= str_replace("https://", "", $o->url) ?>" alt="<?= $o->alt ?>" /></a>
  12. <?php
  13. }
  14. ?>
  15. </div>
  16. <?php include("../include/footer.php"); ?>