54 lines
1.4 KiB
Plaintext
Raw Normal View History

component Users(users []*arn.User, url string)
2017-07-06 20:23:32 +00:00
h1.page-title Users
UsersTabs(url)
2017-07-19 11:08:12 +00:00
2017-06-10 00:51:11 +00:00
.user-avatars
each user in users
2017-07-19 11:21:01 +00:00
.mountable
2017-10-07 08:52:59 +00:00
Avatar(user)
component ProUsers(users []*arn.User, url string)
h1.page-title Supporters
UsersTabs(url)
.pro-avatars
each user in users
a.profile-image-container.mountable.ajax(href=user.Link())
ProfileImage(user)
.anime-grid-title
.anime-grid-title-text= user.Nick
.footer.mountable
p We are thankful to everyone supporting the site!
2017-11-30 15:40:52 +00:00
component UserLists(groups []*utils.UserList, url string)
h1.page-title Users
UsersTabs(url)
2017-11-30 15:40:52 +00:00
each group in groups
h3.user-list-name.mountable= group.Name
.user-avatars
each user in group.Users
.mountable
Avatar(user)
2017-11-30 16:20:15 +00:00
component StaffRecruitment
.footer.mountable
p
a(href="https://github.com/animenotifier/notify.moe/blob/go/INSTALLATION.md", target="_blank", rel="noopener") Interested in contributing code?
br
a(href="https://discord.gg/0kimAmMCeXGXuzNF", target="_blank", rel="noopener") Interested in editing data?
component UsersTabs(url string)
2017-10-07 08:52:59 +00:00
.tabs
Tab("Active", "users", "/users")
Tab("Games", "gamepad", "/users/games/osu")
Tab("Editors", "pencil", "/users/editors")
Tab("Supporters", "heart", "/users/pro")
Tab("Staff", "user-secret", "/users/staff")
if strings.Contains(url, "/users/games")
.tabs
Tab("Osu", "gamepad", "/users/games/osu")
Tab("Overwatch", "overwatch", "/users/games/overwatch")