diff options
Diffstat (limited to 'pages/home.inc')
-rw-r--r-- | pages/home.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/home.inc b/pages/home.inc index 48c26da..f19d6f5 100644 --- a/pages/home.inc +++ b/pages/home.inc @@ -54,7 +54,7 @@ function members() { global $isLoggedIn; global $isLowerLoggedIn; global $app; ? echo('<a style="text-decoration:none !important;filter:none !important;"><div class="hpd-item-card" style="background-color:rgba(255, 255, 255, .1);border:1px solid ' . (isset($member['color']) ? "#" . $member['color'] . "55" : "transparent") . ';outline-color:' . (isset($member['color']) ? "#" . $member['color'] . "55" : "transparent") . ';border-radius:10px;text-align:center;display:flex;align-items:center;justify-content:center;padding:5px;opacity:5;"><div> <img alt="" src="' . $member["avatar"] . '" style="border-radius:999px;background-color:rgba(0, 0, 0, .25);height:48px;display:block;margin-left:auto;margin-right:auto;"> <div style="text-decoration:none;color:white;margin-top:5px;">' . ($member['name'] ?? $id) . '</div> -<div style="text-decoration:none !important;color:white !important;">' . date('j M Y', strtotime($member["date"])) . '</div> +<div style="text-decoration:none !important;color:white !important;">' . (isset($member['prefix']) ? "<code style='color:white;'>" . $member['prefix'] . "</code> ยท " : "") . date('j M Y', strtotime($member["date"])) . '</div> </div></div></a>'); endforeach; ?> |