このコミットが含まれているのは:
守矢諏訪子 2023-05-03 15:47:12 +09:00
コミット 17afb03c69
1個のファイルの変更12行の追加3行の削除

ファイルの表示

@ -73,10 +73,19 @@
<?php
if (!$rec->error) {
foreach ($rec->body->illusts as $r) {
if (is_null($r->id)) continue;
?>
<a href="/artworks/?id=<?= $r->id ?>">
<img src="<?= imgprx($r->url) ?>" alt="<?= $r->alt ?>" />
</a>
<div class="searchres">
<a href="/artworks/?id=<?= $r->id ?>">
<img src="<?= imgprx($r->url) ?>" alt="<?= $r->alt ?>" style="width: 260px; height: 260px;" />
<?= $r->title ?>
</a>
<br />
<a href="/users/?id=<?= $r->userId ?>">
<img src="<?= imgprx($r->profileImageUrl) ?>" alt="<?= $r->userName ?>" style="width: 24px; height: 24px;" />
<?= $r->userName ?>
</a>
</div>
<?php
}
}