21 lines
695 B
Plaintext
Raw Normal View History

2018-11-24 06:57:52 +00:00
//- component ProfileQuotes(quotes []*arn.Quote, viewUser *arn.User, nextIndex int, user *arn.User, uri string)
//- ProfileHeader(viewUser, user, uri)
2018-03-19 11:25:31 +00:00
2018-11-24 06:57:52 +00:00
//- if strings.Contains(uri, "/added")
//- h1.page-title= "Quotes added by " + viewUser.Nick
//- else
//- h1.page-title= "Quotes liked by " + viewUser.Nick
2018-03-19 11:25:31 +00:00
2018-11-24 06:57:52 +00:00
//- if len(quotes) == 0
//- if strings.Contains(uri, "/added")
//- p.no-data.mountable= viewUser.Nick + " hasn't added any quotes yet."
//- else
//- p.no-data.mountable= viewUser.Nick + " hasn't liked any quotes yet."
//- else
//- #load-more-target.quotes
//- QuotesScrollable(quotes, user)
2018-03-19 11:25:31 +00:00
2018-11-24 06:57:52 +00:00
//- if nextIndex != -1
//- .buttons
//- LoadMore(nextIndex)
2018-03-19 11:25:31 +00:00