9 lines
378 B
Plaintext
9 lines
378 B
Plaintext
component AnimeListPage(animeListItems []*arn.AnimeListItem, nextIndex int, viewUser *arn.User, user *arn.User, status string)
|
|
h1.page-title= viewUser.Nick + "'s anime list"
|
|
|
|
if user == nil || user.ID != viewUser.ID
|
|
.anime-list-user-avatar
|
|
AvatarNoTip(viewUser)
|
|
|
|
StatusTabs("/+" + viewUser.Nick + "/animelist")
|
|
AnimeListItems(animeListItems, nextIndex, viewUser, user) |