component CompaniesEditorList(companies []*arn.Company, count int, url string, user *arn.User) EditorTabs(url, user) h1.editor-list-page-title.mountable Companies without a description .footer.editor-list-entry-count.mountable= strconv.Itoa(count) + " companies" table.editor-list thead tr.mountable th Name th Search tbody each company in companies tr.mountable td a(href=company.Link(), target="_blank", rel="noopener")= company.Name.English td a(href="https://en.wikipedia.org/w/index.php?search=" + company.Name.English, target="_blank", rel="noopener") 🔍