Browse Source

そこも良いかしら

諏訪子 1 year ago
parent
commit
2631effff6
2 changed files with 12 additions and 1 deletions
  1. 11 1
      www/index.php
  2. 1 0
      www/style.css

+ 11 - 1
www/index.php

@@ -10,7 +10,17 @@
 <?php
   foreach ($res["body"]->thumbnails->illust as $o) {
 ?>
-        <a href="/artworks?id=<?= $o->id ?>"><img src="<?= imgprx($o->url) ?>" alt="<?= $o->alt ?>" /></a>
+        <div class="searchres">
+          <a href="/artworks/?id=<?= $o->id ?>">
+            <img src="<?= imgprx($o->url) ?>" alt="<?= $o->alt ?>" />
+            <?= $o->title ?>
+          </a>
+          <br />
+          <a href="/users/?id=<?= $o->userId ?>">
+            <img src="<?= imgprx($o->profileImageUrl) ?>" alt="<?= $o->userName ?>" style="width: 24px; height: 24px;" />
+            <?= $o->userName ?>
+          </a>
+        </div>
 <?php
   }
 ?>

+ 1 - 0
www/style.css

@@ -72,6 +72,7 @@ h2 {
   border-radius: 4px;
   display: inline-block;
   font-size: 12px;
+  margin: 4px;
 }
 
 .searchres > a > img {