そこも良いかしら

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

ファイルの表示

@ -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
}
?>

ファイルの表示

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