component SearchResults(term string, users []*arn.User, animes []*arn.Anime, posts []*arn.Post, threads []*arn.Thread, tracks []*arn.SoundTrack, characters []*arn.Character, companies []*arn.Company, quotes []*arn.Quote) h1.page-title= "Search: " + term .search .widget h3.widget-title Icon("tv") span Anime #anime-search-results AnimeSearchResults(animes) .widget h3.widget-title Icon("user") span Characters #character-search-results CharacterSearchResults(characters) .widget h3.widget-title Icon("comment") span Forum #forum-search-results ForumSearchResults(posts, threads) .widget h3.widget-title Icon("music") span Soundtracks #soundtrack-search-results SoundTrackSearchResults(tracks) //- .widget //- h3.widget-title //- Icon("quote-left") //- span Quotes //- #quote-search-results //- QuoteSearchResults(quotes) .widget h3.widget-title Icon("building") span Companies #company-search-results CompanySearchResults(companies) .widget h3.widget-title Icon("user") span Users #user-search-results UserSearchResults(users) component AnimeSearchResults(animes []*arn.Anime) if len(animes) == 0 p.no-search-results.mountable No anime found. else .profile-watching-list.anime-search each anime in animes a.profile-watching-list-item.tip.mountable(href=anime.Link(), aria-label=anime.Title.Canonical, data-mountable-type="anime") img.anime-cover-image.anime-search-result.lazy(data-src=anime.ImageLink("small"), data-webp="true", data-color=anime.AverageColor(), alt=anime.Title.Canonical) component CharacterSearchResults(characters []*arn.Character) if len(characters) == 0 p.no-search-results.mountable No characters found. else .character-search each character in characters .mountable(data-mountable-type="character") CharacterSmall(character) component ForumSearchResults(posts []*arn.Post, threads []*arn.Thread) if len(posts) == 0 && len(threads) == 0 p.no-search-results.mountable No posts found. else .forum-search-results each thread in threads .forum-search-result.mountable(data-mountable-type="forum") .forum-search-result-header a.forum-search-result-title(href=thread.Link())= thread.Title if thread.Creator().HasNick() .forum-search-result-author= thread.Creator().Nick .forum-search-result-sample= thread.Text each post in posts .forum-search-result.mountable(data-mountable-type="forum") .forum-search-result-header a.forum-search-result-title(href=post.Link(), data-mountable-type="forum")= post.Thread().Title if post.Creator().HasNick() .forum-search-result-author= post.Creator().Nick .forum-search-result-sample= post.Text component SoundTrackSearchResults(tracks []*arn.SoundTrack) if len(tracks) == 0 p.no-search-results.mountable No soundtracks found. else ul.soundtrack-search each track in tracks li.mountable(data-mountable-type="track") a(href=track.Link())= track.Title.ByUser(nil) span.soundtrack-search-anime= " - " + track.MainAnime().Title.Canonical component CompanySearchResults(companies []*arn.Company) if len(companies) == 0 p.no-search-results.mountable No companies found. else ul.company-search each company in companies li.mountable(data-mountable-type="company") a(href=company.Link())= company.Name.English component QuoteSearchResults(quotes []*arn.Quote) if len(quotes) == 0 p.no-search-results.mountable No quotes found. else ul.quote-search each quote in quotes li.mountable(data-mountable-type="quote") a(href=quote.Link())= quote.Text.English component UserSearchResults(users []*arn.User) if len(users) == 0 p.no-search-results.mountable No users found. else .user-avatars.user-search each user in users .mountable(data-mountable-type="user") Avatar(user)