├── .dockerignore ├── .editorconfig ├── .eslintrc.js ├── .github └── workflows │ ├── bundle_size.yml │ ├── bundle_size_comment.md │ ├── develop.yml │ ├── master.yml │ ├── tests.yml │ └── themes.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .nvmrc ├── .release-it.json ├── .yarn └── releases │ └── yarn-3.2.3.cjs ├── .yarnrc.yml ├── CHANGELOG.md ├── COMMITLINT.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── VOLTO-BRANCHES.md ├── babel.config.js ├── commitlint.config.js ├── docker-compose.test.yml ├── docker-compose.yml ├── ecosystem.config.js ├── entrypoint.sh ├── error-503.html ├── iocomune.ecosystem.config.js ├── jsconfig.json ├── locales ├── de │ └── LC_MESSAGES │ │ └── volto.po ├── en │ └── LC_MESSAGES │ │ └── volto.po ├── fr │ └── LC_MESSAGES │ │ └── volto.po ├── it │ └── LC_MESSAGES │ │ └── volto.po ├── ja │ └── LC_MESSAGES │ │ └── volto.po ├── nl │ └── LC_MESSAGES │ │ └── volto.po └── volto.pot ├── package.json ├── patches ├── patchit.sh └── razzle-jest.patch ├── public ├── critical____not_used.css └── favicon.ico ├── razzle.config.js ├── src ├── actions │ ├── calendarDaySearch.js │ ├── calendarSearch.js │ ├── getAmministrazioneTrasparenteTree.js │ ├── getDettagliProcedimento.js │ ├── getSearchBandiFilters.js │ ├── getSearchFilters.js │ ├── getSearchResults.js │ ├── getTwitterPosts.js │ ├── index.js │ └── setOriginalQuery.js ├── client.js ├── components │ ├── Checkbox.jsx │ ├── Collapse.jsx │ ├── Image │ │ ├── Image.jsx │ │ └── helpers.js │ ├── ItaliaTheme │ │ ├── AppExtras │ │ │ ├── GenericAppExtras.jsx │ │ │ ├── HandleAnchor.jsx │ │ │ └── PageLoader.jsx │ │ ├── Blocks │ │ │ ├── Accordion │ │ │ │ ├── Block │ │ │ │ │ ├── EditBlock.jsx │ │ │ │ │ └── ViewBlock.jsx │ │ │ │ ├── Edit.jsx │ │ │ │ ├── Sidebar.jsx │ │ │ │ └── View.jsx │ │ │ ├── Alert │ │ │ │ ├── Edit.jsx │ │ │ │ ├── Sidebar.jsx │ │ │ │ └── View.jsx │ │ │ ├── ArgumentsInEvidence │ │ │ │ ├── Background.jsx │ │ │ │ ├── Block.jsx │ │ │ │ ├── Body.jsx │ │ │ │ ├── BodyWrapper.jsx │ │ │ │ ├── BottomBody.jsx │ │ │ │ ├── Edit.jsx │ │ │ │ ├── Sidebar.jsx │ │ │ │ └── View.jsx │ │ │ ├── BandiSearch │ │ │ │ ├── Body.jsx │ │ │ │ ├── DefaultFilters.js │ │ │ │ ├── Edit.jsx │ │ │ │ ├── FiltersConfig.js │ │ │ │ ├── Sidebar.jsx │ │ │ │ └── View.jsx │ │ │ ├── Break │ │ │ │ ├── Edit.jsx │ │ │ │ └── View.jsx │ │ │ ├── CTABlock │ │ │ │ ├── Block.jsx │ │ │ │ ├── BodyWrapper.jsx │ │ │ │ ├── Edit.jsx │ │ │ │ ├── Sidebar.jsx │ │ │ │ └── View.jsx │ │ │ ├── Calendar │ │ │ │ ├── Body.jsx │ │ │ │ ├── Edit.jsx │ │ │ │ ├── Item.jsx │ │ │ │ ├── ListingSidebar.jsx │ │ │ │ └── View.jsx │ │ │ ├── Common │ │ │ │ └── SearchFilters │ │ │ │ │ ├── DateFilter.jsx │ │ │ │ │ ├── SelectFilter.jsx │ │ │ │ │ ├── TextFilter.jsx │ │ │ │ │ └── index.js │ │ │ ├── ContactsBlock │ │ │ │ ├── Block │ │ │ │ │ ├── EditBlock.jsx │ │ │ │ │ └── ViewBlock.jsx │ │ │ │ ├── Edit.jsx │ │ │ │ ├── Sidebar.jsx │ │ │ │ └── View.jsx │ │ │ ├── CountDown │ │ │ │ ├── Background.jsx │ │ │ │ ├── Body.jsx │ │ │ │ ├── CountDown.jsx │ │ │ │ ├── Edit.jsx │ │ │ │ ├── Sidebar.jsx │ │ │ │ └── View.jsx │ │ │ ├── EventSearch │ │ │ │ ├── Body.jsx │ │ │ │ ├── DefaultFilters.js │ │ │ │ ├── Edit.jsx │ │ │ │ ├── FiltersConfig.js │ │ │ │ ├── Sidebar.jsx │ │ │ │ └── View.jsx │ │ │ ├── HTML │ │ │ │ └── Sidebar.jsx │ │ │ ├── HeroImageLeft │ │ │ │ ├── HeroSidebar.jsx │ │ │ │ └── StoresButtons.jsx │ │ │ ├── HighlightedContent │ │ │ │ ├── Body.jsx │ │ │ │ ├── Edit.jsx │ │ │ │ ├── Sidebar.jsx │ │ │ │ ├── Skeleton.jsx │ │ │ │ └── View.jsx │ │ │ ├── IconBlocks │ │ │ │ ├── Block │ │ │ │ │ ├── EditBlock.jsx │ │ │ │ │ └── ViewBlock.jsx │ │ │ │ ├── Edit.jsx │ │ │ │ ├── Sidebar.jsx │ │ │ │ └── View.jsx │ │ │ ├── Listing │ │ │ │ ├── AmministrazioneTrasparenteTablesTemplate.jsx │ │ │ │ ├── BandiInEvidenceTemplate.jsx │ │ │ │ ├── CardWithImageTemplate.jsx │ │ │ │ ├── CardWithSlideUpTextTemplate.jsx │ │ │ │ ├── Commons │ │ │ │ │ ├── CardCalendar.jsx │ │ │ │ │ ├── ListingCategory.jsx │ │ │ │ │ ├── ListingImage.jsx │ │ │ │ │ ├── ListingLinkMore.jsx │ │ │ │ │ ├── ListingText.jsx │ │ │ │ │ └── utils.js │ │ │ │ ├── CompleteBlockLinksTemplate.jsx │ │ │ │ ├── ContentInEvidenceTemplate.jsx │ │ │ │ ├── GridGalleryTemplate.jsx │ │ │ │ ├── InEvidenceTemplate.jsx │ │ │ │ ├── MapTemplate.jsx │ │ │ │ ├── PhotogalleryTemplate.jsx │ │ │ │ ├── RibbonCardTemplate.jsx │ │ │ │ ├── SimpleCard │ │ │ │ │ ├── SimpleCardTemplate.jsx │ │ │ │ │ ├── SimpleCardTemplateCompact.jsx │ │ │ │ │ └── SimpleCardTemplateDefault.jsx │ │ │ │ ├── SimpleListTemplate.jsx │ │ │ │ ├── SliderTemplate.jsx │ │ │ │ ├── SmallBlockLinksTemplate.jsx │ │ │ │ ├── SquaresImageTemplate.jsx │ │ │ │ ├── TemplatesSkeletons │ │ │ │ │ ├── AmministrazioneTrasparenteTablesTemplateSkeleton.jsx │ │ │ │ │ ├── BandiInEvidenceTemplateSkeleton.jsx │ │ │ │ │ ├── CardWithImageTemplateSkeleton.jsx │ │ │ │ │ ├── CardWithSlideUpTextTemplateSkeleton.jsx │ │ │ │ │ ├── CompleteBlockLinksTemplateSkeleton.jsx │ │ │ │ │ ├── ContentInEvidenceTemplateSkeleton.jsx │ │ │ │ │ ├── GridGalleryTemplateSkeleton.jsx │ │ │ │ │ ├── InEvidenceTemplateSkeleton.jsx │ │ │ │ │ ├── MapTemplateSkeleton.jsx │ │ │ │ │ ├── PhotogalleryTemplateSkeleton.jsx │ │ │ │ │ ├── RibbonCardTemplateSkeleton.jsx │ │ │ │ │ ├── SimpleListTemplateSkeleton.jsx │ │ │ │ │ ├── Skeleton.jsx │ │ │ │ │ ├── SliderTemplateSkeleton.jsx │ │ │ │ │ ├── SmallBlockLinksTemplateSkeleton.jsx │ │ │ │ │ └── SquaresImageTemplateSkeleton.jsx │ │ │ │ └── serviziAmministrazioneTrasparenteTemplate.jsx │ │ │ ├── NumbersBlock │ │ │ │ ├── Block │ │ │ │ │ ├── EditBlock.jsx │ │ │ │ │ └── ViewBlock.jsx │ │ │ │ ├── Edit.jsx │ │ │ │ ├── Sidebar.jsx │ │ │ │ └── View.jsx │ │ │ ├── RssBlock │ │ │ │ ├── CardWithImageRssTemplate.jsx │ │ │ │ ├── CardWithoutImageRssTemplate.jsx │ │ │ │ ├── TemplatesSkeleton │ │ │ │ │ ├── CardWithImageRssTemplateSkeleton.jsx │ │ │ │ │ └── CardWithoutImageRssTemplateSkeleton.jsx │ │ │ │ └── utils.js │ │ │ ├── SearchSections │ │ │ │ ├── Background.jsx │ │ │ │ ├── BackgroundUser.jsx │ │ │ │ ├── Body.jsx │ │ │ │ ├── Edit.jsx │ │ │ │ ├── SideBar.jsx │ │ │ │ └── View.jsx │ │ │ ├── TextCard │ │ │ │ ├── CardWithImage │ │ │ │ │ ├── Block.jsx │ │ │ │ │ ├── BodyWrapper.jsx │ │ │ │ │ ├── Edit.jsx │ │ │ │ │ ├── Sidebar.jsx │ │ │ │ │ └── View.jsx │ │ │ │ └── SimpleCard │ │ │ │ │ ├── Block.jsx │ │ │ │ │ ├── BodyWrapper.jsx │ │ │ │ │ ├── Edit.jsx │ │ │ │ │ └── View.jsx │ │ │ ├── TwitterPosts │ │ │ │ ├── Body.jsx │ │ │ │ ├── Edit.jsx │ │ │ │ ├── Sidebar.jsx │ │ │ │ ├── Skeleton.jsx │ │ │ │ └── View.jsx │ │ │ ├── UOSearch │ │ │ │ ├── Body.jsx │ │ │ │ ├── DefaultFilters.js │ │ │ │ ├── Edit.jsx │ │ │ │ ├── FiltersConfig.js │ │ │ │ ├── Sidebar.jsx │ │ │ │ └── View.jsx │ │ │ └── VideoGallery │ │ │ │ ├── Block │ │ │ │ ├── EditBlock.jsx │ │ │ │ └── ViewBlock.jsx │ │ │ │ ├── Body.jsx │ │ │ │ ├── Edit.jsx │ │ │ │ ├── Sidebar.jsx │ │ │ │ └── View.jsx │ │ ├── BrandText │ │ │ └── BrandText.jsx │ │ ├── BrandTextFooter │ │ │ └── BrandTextFooter.jsx │ │ ├── Breadcrumbs │ │ │ ├── Breadcrumbs.jsx │ │ │ └── GoogleBreadcrumbs.jsx │ │ ├── Cards │ │ │ ├── CardCategory.jsx │ │ │ └── CardPersona.jsx │ │ ├── CustomerSatisfaction │ │ │ └── CustomerSatisfaction.jsx │ │ ├── Footer │ │ │ ├── FooterInfos.jsx │ │ │ ├── FooterMain.jsx │ │ │ ├── FooterNavigation.jsx │ │ │ ├── FooterNewsletterSubscribe.jsx │ │ │ ├── FooterSmall.jsx │ │ │ ├── FooterSocials.jsx │ │ │ └── SubsiteFooter.jsx │ │ ├── GalleryPreview │ │ │ └── GalleryPreview.jsx │ │ ├── Header │ │ │ ├── HeaderCenter.jsx │ │ │ ├── HeaderSearch │ │ │ │ ├── HeaderSearch.jsx │ │ │ │ └── SearchModal.jsx │ │ │ ├── HeaderSlim.jsx │ │ │ ├── HeaderSlim │ │ │ │ ├── ArLogin.jsx │ │ │ │ ├── HeaderSlimRightZone.jsx │ │ │ │ ├── LoginButton.jsx │ │ │ │ ├── TertiaryMenu.jsx │ │ │ │ └── UserLoggedMenu.jsx │ │ │ ├── ParentSiteMenu.jsx │ │ │ ├── SocialHeader.jsx │ │ │ └── SubsiteHeader.jsx │ │ ├── Icons │ │ │ ├── DesignIcon.jsx │ │ │ ├── FontAwesomeIcon.jsx │ │ │ ├── Icon.jsx │ │ │ ├── SectionIcon.jsx │ │ │ ├── __mocks__ │ │ │ │ └── Icon.jsx │ │ │ ├── common │ │ │ │ ├── common.js │ │ │ │ └── common_extend.js │ │ │ └── svg │ │ │ │ └── TelegramSVG.jsx │ │ ├── LanguageSelector │ │ │ └── LanguageSelector.jsx │ │ ├── Logo │ │ │ ├── Logo.jsx │ │ │ └── it-pa-white.png │ │ ├── LogoFooter │ │ │ └── LogoFooter.jsx │ │ ├── MegaMenu │ │ │ └── MegaMenu.jsx │ │ ├── MenuSecondary │ │ │ └── MenuSecondary.jsx │ │ ├── Pagination │ │ │ ├── Pagination.jsx │ │ │ ├── PaginationItem.jsx │ │ │ └── createPaginationItems │ │ │ │ ├── createPaginationItems.js │ │ │ │ ├── index.js │ │ │ │ ├── itemFactories.js │ │ │ │ ├── paginationUtils.js │ │ │ │ ├── rangeFactories.js │ │ │ │ └── suffixFactories.js │ │ ├── RemoveBodyClass │ │ │ └── RemoveBodyClass.jsx │ │ ├── ScrollToTop │ │ │ └── ScrollToTop.jsx │ │ ├── Search │ │ │ ├── ResultItem.jsx │ │ │ ├── Search.jsx │ │ │ ├── SearchCTs.jsx │ │ │ ├── SearchSections.jsx │ │ │ ├── SearchTopics.jsx │ │ │ └── utils.js │ │ ├── SkipLinks │ │ │ └── SkipLinks.jsx │ │ ├── Unauthorized │ │ │ └── Unauthorized.jsx │ │ ├── View │ │ │ ├── BandoView │ │ │ │ ├── ApprofondimentoModulo.jsx │ │ │ │ ├── BandoApprofondimenti.jsx │ │ │ │ ├── BandoAreaResponsabile.jsx │ │ │ │ ├── BandoDate.jsx │ │ │ │ ├── BandoServizi.jsx │ │ │ │ ├── BandoText.jsx │ │ │ │ ├── BandoUfficioResponsabile.jsx │ │ │ │ ├── BandoUlterioriInformazioni.jsx │ │ │ │ ├── BandoView.jsx │ │ │ │ └── Placeholder │ │ │ │ │ ├── AfterContent.jsx │ │ │ │ │ └── AfterRelatedItems.jsx │ │ │ ├── CartellaModulisticaView │ │ │ │ ├── CartellaModulisticaView.jsx │ │ │ │ ├── DocRow.jsx │ │ │ │ └── Placeholder │ │ │ │ │ ├── AfterContent.jsx │ │ │ │ │ └── AfterRelatedItems.jsx │ │ │ ├── Commons │ │ │ │ ├── Actions.jsx │ │ │ │ ├── Argument │ │ │ │ │ └── ArgumentIcon.jsx │ │ │ │ ├── Attachment.jsx │ │ │ │ ├── Attachments.jsx │ │ │ │ ├── BandoDates.jsx │ │ │ │ ├── ContactLink.jsx │ │ │ │ ├── ContentImage.jsx │ │ │ │ ├── ContentTypeViewSections.jsx │ │ │ │ ├── CuredBy.jsx │ │ │ │ ├── Dates.jsx │ │ │ │ ├── DownloadFileFormat.jsx │ │ │ │ ├── EmbeddedVideo.jsx │ │ │ │ ├── Events.jsx │ │ │ │ ├── Gallery.jsx │ │ │ │ ├── GenericCard.jsx │ │ │ │ ├── HelpBox.jsx │ │ │ │ ├── LocationItem.jsx │ │ │ │ ├── Locations.jsx │ │ │ │ ├── LocationsMap.jsx │ │ │ │ ├── Metadata.jsx │ │ │ │ ├── Module.jsx │ │ │ │ ├── Modules.jsx │ │ │ │ ├── NewsCard.jsx │ │ │ │ ├── OfficeCard.jsx │ │ │ │ ├── PageHeader │ │ │ │ │ ├── PageHeader.jsx │ │ │ │ │ ├── PageHeaderBando.jsx │ │ │ │ │ ├── PageHeaderDates.jsx │ │ │ │ │ ├── PageHeaderEventDates.jsx │ │ │ │ │ ├── PageHeaderExtend.jsx │ │ │ │ │ ├── PageHeaderNewsItem.jsx │ │ │ │ │ ├── PageHeaderPersona.jsx │ │ │ │ │ └── PageHeaderTassonomiaArgomenti.jsx │ │ │ │ ├── PageHeaderNav.jsx │ │ │ │ ├── PageMetadata.jsx │ │ │ │ ├── RelatedArticles.jsx │ │ │ │ ├── RelatedItemInEvidence │ │ │ │ │ ├── Arguments.jsx │ │ │ │ │ ├── ItemInEvidence.jsx │ │ │ │ │ └── RelatedItemInEvidence.jsx │ │ │ │ ├── RelatedItems.jsx │ │ │ │ ├── RelatedNews.jsx │ │ │ │ ├── RelatedNewsArticles.jsx │ │ │ │ ├── RenderBlocks.jsx │ │ │ │ ├── RichText.jsx │ │ │ │ ├── RichTextArticle.jsx │ │ │ │ ├── RichTextRender.jsx │ │ │ │ ├── SearchSectionForm.jsx │ │ │ │ ├── Sharing.jsx │ │ │ │ ├── SideMenu.jsx │ │ │ │ ├── SkipToMainContent.jsx │ │ │ │ ├── SmallVenue.jsx │ │ │ │ ├── Sponsors.jsx │ │ │ │ ├── TextOrBlocks.jsx │ │ │ │ ├── TrasparenzaFields.jsx │ │ │ │ ├── Venue.jsx │ │ │ │ ├── VenuesSmall.jsx │ │ │ │ ├── WideImage.jsx │ │ │ │ └── index.jsx │ │ │ ├── DocumentoView │ │ │ │ ├── DocumentoAccedereServizio.jsx │ │ │ │ ├── DocumentoAreaResponsabile.jsx │ │ │ │ ├── DocumentoDescrizione.jsx │ │ │ │ ├── DocumentoDocAllegati.jsx │ │ │ │ ├── DocumentoDocumenti.jsx │ │ │ │ ├── DocumentoUfficioResponsabile.jsx │ │ │ │ ├── DocumentoUlterioriInformazioni.jsx │ │ │ │ ├── DocumentoView.jsx │ │ │ │ └── Placeholder │ │ │ │ │ ├── AfterContent.jsx │ │ │ │ │ └── AfterRelatedItems.jsx │ │ │ ├── EventoView │ │ │ │ ├── EventoContatti.jsx │ │ │ │ ├── EventoCosE.jsx │ │ │ │ ├── EventoCosti.jsx │ │ │ │ ├── EventoDateOrari.jsx │ │ │ │ ├── EventoDocumenti.jsx │ │ │ │ ├── EventoLuoghi.jsx │ │ │ │ ├── EventoPadreEFigli.jsx │ │ │ │ ├── EventoSponsors.jsx │ │ │ │ ├── EventoUlterioriInformazioni.jsx │ │ │ │ ├── EventoView.jsx │ │ │ │ └── Placeholder │ │ │ │ │ ├── AfterContent.jsx │ │ │ │ │ └── AfterRelatedItems.jsx │ │ │ ├── FAQ │ │ │ │ ├── FaqFolder │ │ │ │ │ ├── FaqFolderTree.jsx │ │ │ │ │ ├── FaqFolderView.jsx │ │ │ │ │ ├── Placeholder │ │ │ │ │ │ ├── AfterContent.jsx │ │ │ │ │ │ └── AfterRelatedItems.jsx │ │ │ │ │ └── SearchBar.jsx │ │ │ │ └── FaqView │ │ │ │ │ ├── FaqView.jsx │ │ │ │ │ └── Placeholder │ │ │ │ │ ├── AfterContent.jsx │ │ │ │ │ └── AfterRelatedItems.jsx │ │ │ ├── ModuloView │ │ │ │ ├── ModuloFilePrincipale.jsx │ │ │ │ ├── ModuloFiles.jsx │ │ │ │ ├── ModuloFormatiAlternativi.jsx │ │ │ │ ├── ModuloText.jsx │ │ │ │ ├── ModuloView.jsx │ │ │ │ └── Placeholder │ │ │ │ │ ├── AfterContent.jsx │ │ │ │ │ └── AfterRelatedItems.jsx │ │ │ ├── NewsItemView │ │ │ │ ├── NewsItemACuraDi.jsx │ │ │ │ ├── NewsItemAllegati.jsx │ │ │ │ ├── NewsItemDataset.jsx │ │ │ │ ├── NewsItemGallery.jsx │ │ │ │ ├── NewsItemLuoghiCorrelati.jsx │ │ │ │ ├── NewsItemMetadata.jsx │ │ │ │ ├── NewsItemText.jsx │ │ │ │ ├── NewsItemView.jsx │ │ │ │ └── Placeholder │ │ │ │ │ ├── AfterContent.jsx │ │ │ │ │ └── AfterRelatedItems.jsx │ │ │ ├── PageView │ │ │ │ ├── PageView.jsx │ │ │ │ └── Placeholder │ │ │ │ │ ├── AfterContent.jsx │ │ │ │ │ ├── AfterRelatedItems.jsx │ │ │ │ │ └── Title.jsx │ │ │ ├── PaginaArgomentoView │ │ │ │ ├── PaginaArgomentoView.jsx │ │ │ │ ├── PaginaArgomentoViewNoBlocks.jsx │ │ │ │ └── Placeholder │ │ │ │ │ ├── AfterContent.jsx │ │ │ │ │ └── AfterRelatedItems.jsx │ │ │ ├── PersonaView │ │ │ │ ├── PersonaContatti.jsx │ │ │ │ ├── PersonaDocumenti.jsx │ │ │ │ ├── PersonaRuolo.jsx │ │ │ │ ├── PersonaTelephones.jsx │ │ │ │ ├── PersonaUlterioriInformazioni.jsx │ │ │ │ ├── PersonaView.jsx │ │ │ │ └── Placeholder │ │ │ │ │ ├── AfterContent.jsx │ │ │ │ │ └── AfterRelatedItems.jsx │ │ │ ├── ServizioView │ │ │ │ ├── Placeholder │ │ │ │ │ ├── AfterContent.jsx │ │ │ │ │ └── AfterRelatedItems.jsx │ │ │ │ ├── ServizioAChiSiRivolge.jsx │ │ │ │ ├── ServizioAllegati.jsx │ │ │ │ ├── ServizioAltriDocumenti.jsx │ │ │ │ ├── ServizioCasiParticolari.jsx │ │ │ │ ├── ServizioComeAccedere.jsx │ │ │ │ ├── ServizioContatti.jsx │ │ │ │ ├── ServizioCorrelati.jsx │ │ │ │ ├── ServizioCosE.jsx │ │ │ │ ├── ServizioCosaServe.jsx │ │ │ │ ├── ServizioCostiVincoli.jsx │ │ │ │ ├── ServizioModulistica.jsx │ │ │ │ ├── ServizioSitiEsterni.jsx │ │ │ │ ├── ServizioStato.jsx │ │ │ │ ├── ServizioTempiScadenze.jsx │ │ │ │ ├── ServizioTrasparenza.jsx │ │ │ │ ├── ServizioUlterioriInformazioni.jsx │ │ │ │ └── ServizioView.jsx │ │ │ ├── TrasparenzaView │ │ │ │ ├── DettagliProcedimentiView.jsx │ │ │ │ ├── Placeholder │ │ │ │ │ └── AfterContent.jsx │ │ │ │ └── TrasparenzaView.jsx │ │ │ ├── UOView │ │ │ │ ├── Placeholder │ │ │ │ │ ├── AfterContent.jsx │ │ │ │ │ └── AfterRelatedItems.jsx │ │ │ │ ├── UOContacts.jsx │ │ │ │ ├── UOContactsParts │ │ │ │ │ ├── UOContactsContacts.jsx │ │ │ │ │ ├── UOContactsLocations.jsx │ │ │ │ │ └── UOContactsSediSecondarie.jsx │ │ │ │ ├── UODocuments.jsx │ │ │ │ ├── UOMoreInfos.jsx │ │ │ │ ├── UOPeople.jsx │ │ │ │ ├── UOServices.jsx │ │ │ │ ├── UOStructure.jsx │ │ │ │ ├── UOTelephones.jsx │ │ │ │ ├── UOView.jsx │ │ │ │ └── UOWhatDoesItDo.jsx │ │ │ ├── VenueView │ │ │ │ ├── Placeholder │ │ │ │ │ ├── AfterContent.jsx │ │ │ │ │ └── AfterRelatedItems.jsx │ │ │ │ ├── VenueAccessMode.jsx │ │ │ │ ├── VenueContacts.jsx │ │ │ │ ├── VenueDescription.jsx │ │ │ │ ├── VenueMoreInfos.jsx │ │ │ │ ├── VenuePublicTimetable.jsx │ │ │ │ ├── VenueServices.jsx │ │ │ │ ├── VenueView.jsx │ │ │ │ └── VenueWhere.jsx │ │ │ ├── ViewUtils.jsx │ │ │ ├── __tests__ │ │ │ │ ├── EventoView.test.jsx │ │ │ │ ├── PaginaArgomento.test.jsx │ │ │ │ ├── PersonaView.test.jsx │ │ │ │ └── ServizioView.test.jsx │ │ │ └── index.js │ │ ├── index.js │ │ └── manage │ │ │ └── Widgets │ │ │ ├── CharCounterDescriptionWidget.jsx │ │ │ ├── CharCounterDescriptionWidget.test.jsx │ │ │ ├── ColorListWidget.jsx │ │ │ ├── FileWidget.jsx │ │ │ ├── IconPreviewWidget.jsx │ │ │ ├── IconWidget.jsx │ │ │ ├── LinkToWidget.jsx │ │ │ ├── LocationFiltersWidget.jsx │ │ │ ├── PathFiltersWidget.jsx │ │ │ ├── SearchSectionsConfigurationWidget │ │ │ ├── SearchSectionsConfigurationForm.jsx │ │ │ └── SearchSectionsConfigurationWidget.jsx │ │ │ ├── SubsiteSocialLinksWidget.jsx │ │ │ ├── TextEditorWidget.jsx │ │ │ └── TinymceWidget.jsx │ ├── SelectInput │ │ ├── SelectInput.jsx │ │ └── select-styles.css │ ├── TextInput.jsx │ ├── index.js │ └── slick-carousel │ │ └── slick │ │ ├── ajax-loader.gif │ │ └── slick-theme.css ├── config.js ├── config │ ├── Blocks │ │ ├── ListingOptions │ │ │ ├── bandiInEvidenceTemplate.js │ │ │ ├── cardWithImageTemplate.js │ │ │ ├── cardWithSlideUpTextTemplate.js │ │ │ ├── completeBlockLinksTemplate.js │ │ │ ├── defaultAdditionalOptions.js │ │ │ ├── defaultOptions.js │ │ │ ├── inEvidenceTemplate.js │ │ │ ├── index.js │ │ │ ├── mapTemplate.js │ │ │ ├── photogalleryTemplate.js │ │ │ ├── ribbonCardTemplate.js │ │ │ ├── simpleCardTemplate.js │ │ │ ├── simpleListTemplate.js │ │ │ ├── sliderTemplate.js │ │ │ └── utils.js │ │ ├── blocks.js │ │ └── listingVariations.js │ ├── RichTextEditor │ │ ├── ToolbarButtons │ │ │ ├── AlignButton.jsx │ │ │ ├── ButtonsButton.jsx │ │ │ ├── CalloutsButton.jsx │ │ │ ├── DraftJsDropdownButton.jsx │ │ │ ├── HeadingsButton.jsx │ │ │ ├── TextSizeButton.jsx │ │ │ └── UnderlineButton.jsx │ │ └── config.js │ ├── Subsites │ │ ├── index.js │ │ ├── light-blue.jsx │ │ ├── light-pink.jsx │ │ ├── light-teal.jsx │ │ ├── light-yellow.jsx │ │ ├── magenta.jsx │ │ ├── teal.jsx │ │ ├── white.jsx │ │ └── yellow.jsx │ ├── Views │ │ └── views.js │ ├── Widgets │ │ └── widgets.js │ ├── italiaConfig.js │ ├── loadables.js │ └── volto-gdpr-privacy-defaultPanelConfig.js ├── constants │ └── ActionTypes.js ├── customizations │ ├── README.md │ ├── volto-dropdownmenu │ │ └── widget │ │ │ └── MenuConfigurationForm.jsx │ ├── volto-form-block │ │ └── components │ │ │ ├── Edit.jsx │ │ │ ├── Field.jsx │ │ │ └── FormView.jsx │ ├── volto-gdpr-privacy │ │ └── components │ │ │ └── CookieBanner │ │ │ └── ui │ │ │ ├── Button.jsx │ │ │ └── Container.jsx │ ├── volto-secondarymenu │ │ └── widget │ │ │ └── SecondaryMenuConfigurationForm.jsx │ ├── volto-subfooter │ │ └── widget │ │ │ └── SubFooterConfigurationForm.jsx │ └── volto │ │ ├── components │ │ ├── manage │ │ │ ├── Blocks │ │ │ │ ├── HTML │ │ │ │ │ ├── Edit.jsx │ │ │ │ │ └── View.jsx │ │ │ │ ├── HeroImageLeft │ │ │ │ │ ├── Edit.jsx │ │ │ │ │ └── View.jsx │ │ │ │ ├── Listing │ │ │ │ │ ├── ImageGallery.jsx │ │ │ │ │ ├── ListingBody.jsx │ │ │ │ │ └── withQuerystringResults.jsx │ │ │ │ └── Video │ │ │ │ │ ├── Body.jsx │ │ │ │ │ ├── Edit.jsx │ │ │ │ │ ├── VideoSidebar.jsx │ │ │ │ │ └── View.jsx │ │ │ ├── Contents │ │ │ │ └── Contents.jsx │ │ │ └── Widgets │ │ │ │ └── FileWidget.jsx │ │ └── theme │ │ │ ├── Breadcrumbs │ │ │ └── Breadcrumbs.jsx │ │ │ ├── Footer │ │ │ └── Footer.jsx │ │ │ ├── Header │ │ │ └── Header.jsx │ │ │ ├── Login │ │ │ └── Login.jsx │ │ │ ├── Navigation │ │ │ └── Navigation.jsx │ │ │ ├── Search │ │ │ └── Search.jsx │ │ │ ├── SkipLinks │ │ │ └── SkipLinks.jsx │ │ │ ├── Unauthorized │ │ │ └── Unauthorized.jsx │ │ │ └── View │ │ │ ├── EventDatesInfo.jsx │ │ │ └── ListingView.jsx │ │ ├── helpers │ │ └── Html │ │ │ └── Html.jsx │ │ └── reducers │ │ └── navigation │ │ └── navigation.js ├── helpers │ ├── IconWidget │ │ └── IconWidgetHelper.js │ ├── ListingHelper.js │ ├── ListingHelper_extend.js │ ├── amministrazioneTrasparenteHelper.js │ ├── config.js │ ├── contentHelper.js │ ├── dates.js │ ├── debounce.js │ ├── files.js │ ├── getItemsByPath.js │ ├── index.js │ ├── redraftHelper.js │ ├── videoUrlHelper.js │ └── videoUrlHelper.test.js ├── icons │ ├── archive.svg │ ├── bando.svg │ ├── blocco-icone.svg │ ├── box-open.svg │ ├── building.svg │ ├── calendar-alt.svg │ ├── card-immagine.svg │ ├── card-semplice.svg │ ├── cog.svg │ ├── count-down.svg │ ├── file-alt.svg │ ├── file-download.svg │ ├── file-invoice.svg │ ├── file-odp.svg │ ├── file-ods.svg │ ├── file-odt.svg │ ├── file-xml.svg │ ├── file-xsd.svg │ ├── file.svg │ ├── folder-open.svg │ ├── fontawesome-free-5.15.4-web │ │ ├── LICENSE.txt │ │ └── svgs │ │ │ ├── brands │ │ │ ├── 500px.svg │ │ │ ├── accessible-icon.svg │ │ │ ├── accusoft.svg │ │ │ ├── acquisitions-incorporated.svg │ │ │ ├── adn.svg │ │ │ ├── adversal.svg │ │ │ ├── affiliatetheme.svg │ │ │ ├── airbnb.svg │ │ │ ├── algolia.svg │ │ │ ├── alipay.svg │ │ │ ├── amazon-pay.svg │ │ │ ├── amazon.svg │ │ │ ├── amilia.svg │ │ │ ├── android.svg │ │ │ ├── angellist.svg │ │ │ ├── angrycreative.svg │ │ │ ├── angular.svg │ │ │ ├── app-store-ios.svg │ │ │ ├── app-store.svg │ │ │ ├── apper.svg │ │ │ ├── apple-pay.svg │ │ │ ├── apple.svg │ │ │ ├── artstation.svg │ │ │ ├── asymmetrik.svg │ │ │ ├── atlassian.svg │ │ │ ├── audible.svg │ │ │ ├── autoprefixer.svg │ │ │ ├── avianex.svg │ │ │ ├── aviato.svg │ │ │ ├── aws.svg │ │ │ ├── bandcamp.svg │ │ │ ├── battle-net.svg │ │ │ ├── behance-square.svg │ │ │ ├── behance.svg │ │ │ ├── bimobject.svg │ │ │ ├── bitbucket.svg │ │ │ ├── bitcoin.svg │ │ │ ├── bity.svg │ │ │ ├── black-tie.svg │ │ │ ├── blackberry.svg │ │ │ ├── blogger-b.svg │ │ │ ├── blogger.svg │ │ │ ├── bluetooth-b.svg │ │ │ ├── bluetooth.svg │ │ │ ├── bootstrap.svg │ │ │ ├── btc.svg │ │ │ ├── buffer.svg │ │ │ ├── buromobelexperte.svg │ │ │ ├── buy-n-large.svg │ │ │ ├── buysellads.svg │ │ │ ├── canadian-maple-leaf.svg │ │ │ ├── cc-amazon-pay.svg │ │ │ ├── cc-amex.svg │ │ │ ├── cc-apple-pay.svg │ │ │ ├── cc-diners-club.svg │ │ │ ├── cc-discover.svg │ │ │ ├── cc-jcb.svg │ │ │ ├── cc-mastercard.svg │ │ │ ├── cc-paypal.svg │ │ │ ├── cc-stripe.svg │ │ │ ├── cc-visa.svg │ │ │ ├── centercode.svg │ │ │ ├── centos.svg │ │ │ ├── chrome.svg │ │ │ ├── chromecast.svg │ │ │ ├── cloudflare.svg │ │ │ ├── cloudscale.svg │ │ │ ├── cloudsmith.svg │ │ │ ├── cloudversify.svg │ │ │ ├── codepen.svg │ │ │ ├── codiepie.svg │ │ │ ├── confluence.svg │ │ │ ├── connectdevelop.svg │ │ │ ├── contao.svg │ │ │ ├── cotton-bureau.svg │ │ │ ├── cpanel.svg │ │ │ ├── creative-commons-by.svg │ │ │ ├── creative-commons-nc-eu.svg │ │ │ ├── creative-commons-nc-jp.svg │ │ │ ├── creative-commons-nc.svg │ │ │ ├── creative-commons-nd.svg │ │ │ ├── creative-commons-pd-alt.svg │ │ │ ├── creative-commons-pd.svg │ │ │ ├── creative-commons-remix.svg │ │ │ ├── creative-commons-sa.svg │ │ │ ├── creative-commons-sampling-plus.svg │ │ │ ├── creative-commons-sampling.svg │ │ │ ├── creative-commons-share.svg │ │ │ ├── creative-commons-zero.svg │ │ │ ├── creative-commons.svg │ │ │ ├── critical-role.svg │ │ │ ├── css3-alt.svg │ │ │ ├── css3.svg │ │ │ ├── cuttlefish.svg │ │ │ ├── d-and-d-beyond.svg │ │ │ ├── d-and-d.svg │ │ │ ├── dailymotion.svg │ │ │ ├── dashcube.svg │ │ │ ├── deezer.svg │ │ │ ├── delicious.svg │ │ │ ├── deploydog.svg │ │ │ ├── deskpro.svg │ │ │ ├── dev.svg │ │ │ ├── deviantart.svg │ │ │ ├── dhl.svg │ │ │ ├── diaspora.svg │ │ │ ├── digg.svg │ │ │ ├── digital-ocean.svg │ │ │ ├── discord.svg │ │ │ ├── discourse.svg │ │ │ ├── dochub.svg │ │ │ ├── docker.svg │ │ │ ├── draft2digital.svg │ │ │ ├── dribbble-square.svg │ │ │ ├── dribbble.svg │ │ │ ├── dropbox.svg │ │ │ ├── drupal.svg │ │ │ ├── dyalog.svg │ │ │ ├── earlybirds.svg │ │ │ ├── ebay.svg │ │ │ ├── edge-legacy.svg │ │ │ ├── edge.svg │ │ │ ├── elementor.svg │ │ │ ├── ello.svg │ │ │ ├── ember.svg │ │ │ ├── empire.svg │ │ │ ├── envira.svg │ │ │ ├── erlang.svg │ │ │ ├── ethereum.svg │ │ │ ├── etsy.svg │ │ │ ├── evernote.svg │ │ │ ├── expeditedssl.svg │ │ │ ├── facebook-f.svg │ │ │ ├── facebook-messenger.svg │ │ │ ├── facebook-square.svg │ │ │ ├── facebook.svg │ │ │ ├── fantasy-flight-games.svg │ │ │ ├── fedex.svg │ │ │ ├── fedora.svg │ │ │ ├── figma.svg │ │ │ ├── firefox-browser.svg │ │ │ ├── firefox.svg │ │ │ ├── first-order-alt.svg │ │ │ ├── first-order.svg │ │ │ ├── firstdraft.svg │ │ │ ├── flickr.svg │ │ │ ├── flipboard.svg │ │ │ ├── fly.svg │ │ │ ├── font-awesome-alt.svg │ │ │ ├── font-awesome-flag.svg │ │ │ ├── font-awesome-logo-full.svg │ │ │ ├── font-awesome.svg │ │ │ ├── fonticons-fi.svg │ │ │ ├── fonticons.svg │ │ │ ├── fort-awesome-alt.svg │ │ │ ├── fort-awesome.svg │ │ │ ├── forumbee.svg │ │ │ ├── foursquare.svg │ │ │ ├── free-code-camp.svg │ │ │ ├── freebsd.svg │ │ │ ├── fulcrum.svg │ │ │ ├── galactic-republic.svg │ │ │ ├── galactic-senate.svg │ │ │ ├── get-pocket.svg │ │ │ ├── gg-circle.svg │ │ │ ├── gg.svg │ │ │ ├── git-alt.svg │ │ │ ├── git-square.svg │ │ │ ├── git.svg │ │ │ ├── github-alt.svg │ │ │ ├── github-square.svg │ │ │ ├── github.svg │ │ │ ├── gitkraken.svg │ │ │ ├── gitlab.svg │ │ │ ├── gitter.svg │ │ │ ├── glide-g.svg │ │ │ ├── glide.svg │ │ │ ├── gofore.svg │ │ │ ├── goodreads-g.svg │ │ │ ├── goodreads.svg │ │ │ ├── google-drive.svg │ │ │ ├── google-pay.svg │ │ │ ├── google-play.svg │ │ │ ├── google-plus-g.svg │ │ │ ├── google-plus-square.svg │ │ │ ├── google-plus.svg │ │ │ ├── google-wallet.svg │ │ │ ├── google.svg │ │ │ ├── gratipay.svg │ │ │ ├── grav.svg │ │ │ ├── gripfire.svg │ │ │ ├── grunt.svg │ │ │ ├── guilded.svg │ │ │ ├── gulp.svg │ │ │ ├── hacker-news-square.svg │ │ │ ├── hacker-news.svg │ │ │ ├── hackerrank.svg │ │ │ ├── hips.svg │ │ │ ├── hire-a-helper.svg │ │ │ ├── hive.svg │ │ │ ├── hooli.svg │ │ │ ├── hornbill.svg │ │ │ ├── hotjar.svg │ │ │ ├── houzz.svg │ │ │ ├── html5.svg │ │ │ ├── hubspot.svg │ │ │ ├── ideal.svg │ │ │ ├── imdb.svg │ │ │ ├── innosoft.svg │ │ │ ├── instagram-square.svg │ │ │ ├── instagram.svg │ │ │ ├── instalod.svg │ │ │ ├── intercom.svg │ │ │ ├── internet-explorer.svg │ │ │ ├── invision.svg │ │ │ ├── ioxhost.svg │ │ │ ├── itch-io.svg │ │ │ ├── itunes-note.svg │ │ │ ├── itunes.svg │ │ │ ├── java.svg │ │ │ ├── jedi-order.svg │ │ │ ├── jenkins.svg │ │ │ ├── jira.svg │ │ │ ├── joget.svg │ │ │ ├── joomla.svg │ │ │ ├── js-square.svg │ │ │ ├── js.svg │ │ │ ├── jsfiddle.svg │ │ │ ├── kaggle.svg │ │ │ ├── keybase.svg │ │ │ ├── keycdn.svg │ │ │ ├── kickstarter-k.svg │ │ │ ├── kickstarter.svg │ │ │ ├── korvue.svg │ │ │ ├── laravel.svg │ │ │ ├── lastfm-square.svg │ │ │ ├── lastfm.svg │ │ │ ├── leanpub.svg │ │ │ ├── less.svg │ │ │ ├── line.svg │ │ │ ├── linkedin-in.svg │ │ │ ├── linkedin.svg │ │ │ ├── linode.svg │ │ │ ├── linux.svg │ │ │ ├── lyft.svg │ │ │ ├── magento.svg │ │ │ ├── mailchimp.svg │ │ │ ├── mandalorian.svg │ │ │ ├── markdown.svg │ │ │ ├── mastodon.svg │ │ │ ├── maxcdn.svg │ │ │ ├── mdb.svg │ │ │ ├── medapps.svg │ │ │ ├── medium-m.svg │ │ │ ├── medium.svg │ │ │ ├── medrt.svg │ │ │ ├── meetup.svg │ │ │ ├── megaport.svg │ │ │ ├── mendeley.svg │ │ │ ├── microblog.svg │ │ │ ├── microsoft.svg │ │ │ ├── mix.svg │ │ │ ├── mixcloud.svg │ │ │ ├── mixer.svg │ │ │ ├── mizuni.svg │ │ │ ├── modx.svg │ │ │ ├── monero.svg │ │ │ ├── napster.svg │ │ │ ├── neos.svg │ │ │ ├── nimblr.svg │ │ │ ├── node-js.svg │ │ │ ├── node.svg │ │ │ ├── npm.svg │ │ │ ├── ns8.svg │ │ │ ├── nutritionix.svg │ │ │ ├── octopus-deploy.svg │ │ │ ├── odnoklassniki-square.svg │ │ │ ├── odnoklassniki.svg │ │ │ ├── old-republic.svg │ │ │ ├── opencart.svg │ │ │ ├── openid.svg │ │ │ ├── opera.svg │ │ │ ├── optin-monster.svg │ │ │ ├── orcid.svg │ │ │ ├── osi.svg │ │ │ ├── page4.svg │ │ │ ├── pagelines.svg │ │ │ ├── palfed.svg │ │ │ ├── patreon.svg │ │ │ ├── paypal.svg │ │ │ ├── penny-arcade.svg │ │ │ ├── perbyte.svg │ │ │ ├── periscope.svg │ │ │ ├── phabricator.svg │ │ │ ├── phoenix-framework.svg │ │ │ ├── phoenix-squadron.svg │ │ │ ├── php.svg │ │ │ ├── pied-piper-alt.svg │ │ │ ├── pied-piper-hat.svg │ │ │ ├── pied-piper-pp.svg │ │ │ ├── pied-piper-square.svg │ │ │ ├── pied-piper.svg │ │ │ ├── pinterest-p.svg │ │ │ ├── pinterest-square.svg │ │ │ ├── pinterest.svg │ │ │ ├── playstation.svg │ │ │ ├── product-hunt.svg │ │ │ ├── pushed.svg │ │ │ ├── python.svg │ │ │ ├── qq.svg │ │ │ ├── quinscape.svg │ │ │ ├── quora.svg │ │ │ ├── r-project.svg │ │ │ ├── raspberry-pi.svg │ │ │ ├── ravelry.svg │ │ │ ├── react.svg │ │ │ ├── reacteurope.svg │ │ │ ├── readme.svg │ │ │ ├── rebel.svg │ │ │ ├── red-river.svg │ │ │ ├── reddit-alien.svg │ │ │ ├── reddit-square.svg │ │ │ ├── reddit.svg │ │ │ ├── redhat.svg │ │ │ ├── renren.svg │ │ │ ├── replyd.svg │ │ │ ├── researchgate.svg │ │ │ ├── resolving.svg │ │ │ ├── rev.svg │ │ │ ├── rocketchat.svg │ │ │ ├── rockrms.svg │ │ │ ├── rust.svg │ │ │ ├── safari.svg │ │ │ ├── salesforce.svg │ │ │ ├── sass.svg │ │ │ ├── schlix.svg │ │ │ ├── scribd.svg │ │ │ ├── searchengin.svg │ │ │ ├── sellcast.svg │ │ │ ├── sellsy.svg │ │ │ ├── servicestack.svg │ │ │ ├── shirtsinbulk.svg │ │ │ ├── shopify.svg │ │ │ ├── shopware.svg │ │ │ ├── simplybuilt.svg │ │ │ ├── sistrix.svg │ │ │ ├── sith.svg │ │ │ ├── sketch.svg │ │ │ ├── skyatlas.svg │ │ │ ├── skype.svg │ │ │ ├── slack-hash.svg │ │ │ ├── slack.svg │ │ │ ├── slideshare.svg │ │ │ ├── snapchat-ghost.svg │ │ │ ├── snapchat-square.svg │ │ │ ├── snapchat.svg │ │ │ ├── soundcloud.svg │ │ │ ├── sourcetree.svg │ │ │ ├── speakap.svg │ │ │ ├── speaker-deck.svg │ │ │ ├── spotify.svg │ │ │ ├── squarespace.svg │ │ │ ├── stack-exchange.svg │ │ │ ├── stack-overflow.svg │ │ │ ├── stackpath.svg │ │ │ ├── staylinked.svg │ │ │ ├── steam-square.svg │ │ │ ├── steam-symbol.svg │ │ │ ├── steam.svg │ │ │ ├── sticker-mule.svg │ │ │ ├── strava.svg │ │ │ ├── stripe-s.svg │ │ │ ├── stripe.svg │ │ │ ├── studiovinari.svg │ │ │ ├── stumbleupon-circle.svg │ │ │ ├── stumbleupon.svg │ │ │ ├── superpowers.svg │ │ │ ├── supple.svg │ │ │ ├── suse.svg │ │ │ ├── swift.svg │ │ │ ├── symfony.svg │ │ │ ├── teamspeak.svg │ │ │ ├── telegram-plane.svg │ │ │ ├── telegram.svg │ │ │ ├── tencent-weibo.svg │ │ │ ├── the-red-yeti.svg │ │ │ ├── themeco.svg │ │ │ ├── themeisle.svg │ │ │ ├── think-peaks.svg │ │ │ ├── tiktok.svg │ │ │ ├── trade-federation.svg │ │ │ ├── trello.svg │ │ │ ├── tumblr-square.svg │ │ │ ├── tumblr.svg │ │ │ ├── twitch.svg │ │ │ ├── twitter-square.svg │ │ │ ├── twitter.svg │ │ │ ├── typo3.svg │ │ │ ├── uber.svg │ │ │ ├── ubuntu.svg │ │ │ ├── uikit.svg │ │ │ ├── umbraco.svg │ │ │ ├── uncharted.svg │ │ │ ├── uniregistry.svg │ │ │ ├── unity.svg │ │ │ ├── unsplash.svg │ │ │ ├── untappd.svg │ │ │ ├── ups.svg │ │ │ ├── usb.svg │ │ │ ├── usps.svg │ │ │ ├── ussunnah.svg │ │ │ ├── vaadin.svg │ │ │ ├── viacoin.svg │ │ │ ├── viadeo-square.svg │ │ │ ├── viadeo.svg │ │ │ ├── viber.svg │ │ │ ├── vimeo-square.svg │ │ │ ├── vimeo-v.svg │ │ │ ├── vimeo.svg │ │ │ ├── vine.svg │ │ │ ├── vk.svg │ │ │ ├── vnv.svg │ │ │ ├── vuejs.svg │ │ │ ├── watchman-monitoring.svg │ │ │ ├── waze.svg │ │ │ ├── weebly.svg │ │ │ ├── weibo.svg │ │ │ ├── weixin.svg │ │ │ ├── whatsapp-square.svg │ │ │ ├── whatsapp.svg │ │ │ ├── whmcs.svg │ │ │ ├── wikipedia-w.svg │ │ │ ├── windows.svg │ │ │ ├── wix.svg │ │ │ ├── wizards-of-the-coast.svg │ │ │ ├── wodu.svg │ │ │ ├── wolf-pack-battalion.svg │ │ │ ├── wordpress-simple.svg │ │ │ ├── wordpress.svg │ │ │ ├── wpbeginner.svg │ │ │ ├── wpexplorer.svg │ │ │ ├── wpforms.svg │ │ │ ├── wpressr.svg │ │ │ ├── xbox.svg │ │ │ ├── xing-square.svg │ │ │ ├── xing.svg │ │ │ ├── y-combinator.svg │ │ │ ├── yahoo.svg │ │ │ ├── yammer.svg │ │ │ ├── yandex-international.svg │ │ │ ├── yandex.svg │ │ │ ├── yarn.svg │ │ │ ├── yelp.svg │ │ │ ├── yoast.svg │ │ │ ├── youtube-square.svg │ │ │ ├── youtube.svg │ │ │ └── zhihu.svg │ │ │ ├── regular │ │ │ ├── address-book.svg │ │ │ ├── address-card.svg │ │ │ ├── angry.svg │ │ │ ├── arrow-alt-circle-down.svg │ │ │ ├── arrow-alt-circle-left.svg │ │ │ ├── arrow-alt-circle-right.svg │ │ │ ├── arrow-alt-circle-up.svg │ │ │ ├── bell-slash.svg │ │ │ ├── bell.svg │ │ │ ├── bookmark.svg │ │ │ ├── building.svg │ │ │ ├── calendar-alt.svg │ │ │ ├── calendar-check.svg │ │ │ ├── calendar-minus.svg │ │ │ ├── calendar-plus.svg │ │ │ ├── calendar-times.svg │ │ │ ├── calendar.svg │ │ │ ├── caret-square-down.svg │ │ │ ├── caret-square-left.svg │ │ │ ├── caret-square-right.svg │ │ │ ├── caret-square-up.svg │ │ │ ├── chart-bar.svg │ │ │ ├── check-circle.svg │ │ │ ├── check-square.svg │ │ │ ├── circle.svg │ │ │ ├── clipboard.svg │ │ │ ├── clock.svg │ │ │ ├── clone.svg │ │ │ ├── closed-captioning.svg │ │ │ ├── comment-alt.svg │ │ │ ├── comment-dots.svg │ │ │ ├── comment.svg │ │ │ ├── comments.svg │ │ │ ├── compass.svg │ │ │ ├── copy.svg │ │ │ ├── copyright.svg │ │ │ ├── credit-card.svg │ │ │ ├── dizzy.svg │ │ │ ├── dot-circle.svg │ │ │ ├── edit.svg │ │ │ ├── envelope-open.svg │ │ │ ├── envelope.svg │ │ │ ├── eye-slash.svg │ │ │ ├── eye.svg │ │ │ ├── file-alt.svg │ │ │ ├── file-archive.svg │ │ │ ├── file-audio.svg │ │ │ ├── file-code.svg │ │ │ ├── file-excel.svg │ │ │ ├── file-image.svg │ │ │ ├── file-pdf.svg │ │ │ ├── file-powerpoint.svg │ │ │ ├── file-video.svg │ │ │ ├── file-word.svg │ │ │ ├── file.svg │ │ │ ├── flag.svg │ │ │ ├── flushed.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder.svg │ │ │ ├── font-awesome-logo-full.svg │ │ │ ├── frown-open.svg │ │ │ ├── frown.svg │ │ │ ├── futbol.svg │ │ │ ├── gem.svg │ │ │ ├── grimace.svg │ │ │ ├── grin-alt.svg │ │ │ ├── grin-beam-sweat.svg │ │ │ ├── grin-beam.svg │ │ │ ├── grin-hearts.svg │ │ │ ├── grin-squint-tears.svg │ │ │ ├── grin-squint.svg │ │ │ ├── grin-stars.svg │ │ │ ├── grin-tears.svg │ │ │ ├── grin-tongue-squint.svg │ │ │ ├── grin-tongue-wink.svg │ │ │ ├── grin-tongue.svg │ │ │ ├── grin-wink.svg │ │ │ ├── grin.svg │ │ │ ├── hand-lizard.svg │ │ │ ├── hand-paper.svg │ │ │ ├── hand-peace.svg │ │ │ ├── hand-point-down.svg │ │ │ ├── hand-point-left.svg │ │ │ ├── hand-point-right.svg │ │ │ ├── hand-point-up.svg │ │ │ ├── hand-pointer.svg │ │ │ ├── hand-rock.svg │ │ │ ├── hand-scissors.svg │ │ │ ├── hand-spock.svg │ │ │ ├── handshake.svg │ │ │ ├── hdd.svg │ │ │ ├── heart.svg │ │ │ ├── hospital.svg │ │ │ ├── hourglass.svg │ │ │ ├── id-badge.svg │ │ │ ├── id-card.svg │ │ │ ├── image.svg │ │ │ ├── images.svg │ │ │ ├── keyboard.svg │ │ │ ├── kiss-beam.svg │ │ │ ├── kiss-wink-heart.svg │ │ │ ├── kiss.svg │ │ │ ├── laugh-beam.svg │ │ │ ├── laugh-squint.svg │ │ │ ├── laugh-wink.svg │ │ │ ├── laugh.svg │ │ │ ├── lemon.svg │ │ │ ├── life-ring.svg │ │ │ ├── lightbulb.svg │ │ │ ├── list-alt.svg │ │ │ ├── map.svg │ │ │ ├── meh-blank.svg │ │ │ ├── meh-rolling-eyes.svg │ │ │ ├── meh.svg │ │ │ ├── minus-square.svg │ │ │ ├── money-bill-alt.svg │ │ │ ├── moon.svg │ │ │ ├── newspaper.svg │ │ │ ├── object-group.svg │ │ │ ├── object-ungroup.svg │ │ │ ├── paper-plane.svg │ │ │ ├── pause-circle.svg │ │ │ ├── play-circle.svg │ │ │ ├── plus-square.svg │ │ │ ├── question-circle.svg │ │ │ ├── registered.svg │ │ │ ├── sad-cry.svg │ │ │ ├── sad-tear.svg │ │ │ ├── save.svg │ │ │ ├── share-square.svg │ │ │ ├── smile-beam.svg │ │ │ ├── smile-wink.svg │ │ │ ├── smile.svg │ │ │ ├── snowflake.svg │ │ │ ├── square.svg │ │ │ ├── star-half.svg │ │ │ ├── star.svg │ │ │ ├── sticky-note.svg │ │ │ ├── stop-circle.svg │ │ │ ├── sun.svg │ │ │ ├── surprise.svg │ │ │ ├── thumbs-down.svg │ │ │ ├── thumbs-up.svg │ │ │ ├── times-circle.svg │ │ │ ├── tired.svg │ │ │ ├── trash-alt.svg │ │ │ ├── user-circle.svg │ │ │ ├── user.svg │ │ │ ├── window-close.svg │ │ │ ├── window-maximize.svg │ │ │ ├── window-minimize.svg │ │ │ └── window-restore.svg │ │ │ └── solid │ │ │ ├── ad.svg │ │ │ ├── address-book.svg │ │ │ ├── address-card.svg │ │ │ ├── adjust.svg │ │ │ ├── air-freshener.svg │ │ │ ├── align-center.svg │ │ │ ├── align-justify.svg │ │ │ ├── align-left.svg │ │ │ ├── align-right.svg │ │ │ ├── allergies.svg │ │ │ ├── ambulance.svg │ │ │ ├── american-sign-language-interpreting.svg │ │ │ ├── anchor.svg │ │ │ ├── angle-double-down.svg │ │ │ ├── angle-double-left.svg │ │ │ ├── angle-double-right.svg │ │ │ ├── angle-double-up.svg │ │ │ ├── angle-down.svg │ │ │ ├── angle-left.svg │ │ │ ├── angle-right.svg │ │ │ ├── angle-up.svg │ │ │ ├── angry.svg │ │ │ ├── ankh.svg │ │ │ ├── apple-alt.svg │ │ │ ├── archive.svg │ │ │ ├── archway.svg │ │ │ ├── arrow-alt-circle-down.svg │ │ │ ├── arrow-alt-circle-left.svg │ │ │ ├── arrow-alt-circle-right.svg │ │ │ ├── arrow-alt-circle-up.svg │ │ │ ├── arrow-circle-down.svg │ │ │ ├── arrow-circle-left.svg │ │ │ ├── arrow-circle-right.svg │ │ │ ├── arrow-circle-up.svg │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-right.svg │ │ │ ├── arrow-up.svg │ │ │ ├── arrows-alt-h.svg │ │ │ ├── arrows-alt-v.svg │ │ │ ├── arrows-alt.svg │ │ │ ├── assistive-listening-systems.svg │ │ │ ├── asterisk.svg │ │ │ ├── at.svg │ │ │ ├── atlas.svg │ │ │ ├── atom.svg │ │ │ ├── audio-description.svg │ │ │ ├── award.svg │ │ │ ├── baby-carriage.svg │ │ │ ├── baby.svg │ │ │ ├── backspace.svg │ │ │ ├── backward.svg │ │ │ ├── bacon.svg │ │ │ ├── bacteria.svg │ │ │ ├── bacterium.svg │ │ │ ├── bahai.svg │ │ │ ├── balance-scale-left.svg │ │ │ ├── balance-scale-right.svg │ │ │ ├── balance-scale.svg │ │ │ ├── ban.svg │ │ │ ├── band-aid.svg │ │ │ ├── barcode.svg │ │ │ ├── bars.svg │ │ │ ├── baseball-ball.svg │ │ │ ├── basketball-ball.svg │ │ │ ├── bath.svg │ │ │ ├── battery-empty.svg │ │ │ ├── battery-full.svg │ │ │ ├── battery-half.svg │ │ │ ├── battery-quarter.svg │ │ │ ├── battery-three-quarters.svg │ │ │ ├── bed.svg │ │ │ ├── beer.svg │ │ │ ├── bell-slash.svg │ │ │ ├── bell.svg │ │ │ ├── bezier-curve.svg │ │ │ ├── bible.svg │ │ │ ├── bicycle.svg │ │ │ ├── biking.svg │ │ │ ├── binoculars.svg │ │ │ ├── biohazard.svg │ │ │ ├── birthday-cake.svg │ │ │ ├── blender-phone.svg │ │ │ ├── blender.svg │ │ │ ├── blind.svg │ │ │ ├── blog.svg │ │ │ ├── bold.svg │ │ │ ├── bolt.svg │ │ │ ├── bomb.svg │ │ │ ├── bone.svg │ │ │ ├── bong.svg │ │ │ ├── book-dead.svg │ │ │ ├── book-medical.svg │ │ │ ├── book-open.svg │ │ │ ├── book-reader.svg │ │ │ ├── book.svg │ │ │ ├── bookmark.svg │ │ │ ├── border-all.svg │ │ │ ├── border-none.svg │ │ │ ├── border-style.svg │ │ │ ├── bowling-ball.svg │ │ │ ├── box-open.svg │ │ │ ├── box-tissue.svg │ │ │ ├── box.svg │ │ │ ├── boxes.svg │ │ │ ├── braille.svg │ │ │ ├── brain.svg │ │ │ ├── bread-slice.svg │ │ │ ├── briefcase-medical.svg │ │ │ ├── briefcase.svg │ │ │ ├── broadcast-tower.svg │ │ │ ├── broom.svg │ │ │ ├── brush.svg │ │ │ ├── bug.svg │ │ │ ├── building.svg │ │ │ ├── bullhorn.svg │ │ │ ├── bullseye.svg │ │ │ ├── burn.svg │ │ │ ├── bus-alt.svg │ │ │ ├── bus.svg │ │ │ ├── business-time.svg │ │ │ ├── calculator.svg │ │ │ ├── calendar-alt.svg │ │ │ ├── calendar-check.svg │ │ │ ├── calendar-day.svg │ │ │ ├── calendar-minus.svg │ │ │ ├── calendar-plus.svg │ │ │ ├── calendar-times.svg │ │ │ ├── calendar-week.svg │ │ │ ├── calendar.svg │ │ │ ├── camera-retro.svg │ │ │ ├── camera.svg │ │ │ ├── campground.svg │ │ │ ├── candy-cane.svg │ │ │ ├── cannabis.svg │ │ │ ├── capsules.svg │ │ │ ├── car-alt.svg │ │ │ ├── car-battery.svg │ │ │ ├── car-crash.svg │ │ │ ├── car-side.svg │ │ │ ├── car.svg │ │ │ ├── caravan.svg │ │ │ ├── caret-down.svg │ │ │ ├── caret-left.svg │ │ │ ├── caret-right.svg │ │ │ ├── caret-square-down.svg │ │ │ ├── caret-square-left.svg │ │ │ ├── caret-square-right.svg │ │ │ ├── caret-square-up.svg │ │ │ ├── caret-up.svg │ │ │ ├── carrot.svg │ │ │ ├── cart-arrow-down.svg │ │ │ ├── cart-plus.svg │ │ │ ├── cash-register.svg │ │ │ ├── cat.svg │ │ │ ├── certificate.svg │ │ │ ├── chair.svg │ │ │ ├── chalkboard-teacher.svg │ │ │ ├── chalkboard.svg │ │ │ ├── charging-station.svg │ │ │ ├── chart-area.svg │ │ │ ├── chart-bar.svg │ │ │ ├── chart-line.svg │ │ │ ├── chart-pie.svg │ │ │ ├── check-circle.svg │ │ │ ├── check-double.svg │ │ │ ├── check-square.svg │ │ │ ├── check.svg │ │ │ ├── cheese.svg │ │ │ ├── chess-bishop.svg │ │ │ ├── chess-board.svg │ │ │ ├── chess-king.svg │ │ │ ├── chess-knight.svg │ │ │ ├── chess-pawn.svg │ │ │ ├── chess-queen.svg │ │ │ ├── chess-rook.svg │ │ │ ├── chess.svg │ │ │ ├── chevron-circle-down.svg │ │ │ ├── chevron-circle-left.svg │ │ │ ├── chevron-circle-right.svg │ │ │ ├── chevron-circle-up.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right.svg │ │ │ ├── chevron-up.svg │ │ │ ├── child.svg │ │ │ ├── church.svg │ │ │ ├── circle-notch.svg │ │ │ ├── circle.svg │ │ │ ├── city.svg │ │ │ ├── clinic-medical.svg │ │ │ ├── clipboard-check.svg │ │ │ ├── clipboard-list.svg │ │ │ ├── clipboard.svg │ │ │ ├── clock.svg │ │ │ ├── clone.svg │ │ │ ├── closed-captioning.svg │ │ │ ├── cloud-download-alt.svg │ │ │ ├── cloud-meatball.svg │ │ │ ├── cloud-moon-rain.svg │ │ │ ├── cloud-moon.svg │ │ │ ├── cloud-rain.svg │ │ │ ├── cloud-showers-heavy.svg │ │ │ ├── cloud-sun-rain.svg │ │ │ ├── cloud-sun.svg │ │ │ ├── cloud-upload-alt.svg │ │ │ ├── cloud.svg │ │ │ ├── cocktail.svg │ │ │ ├── code-branch.svg │ │ │ ├── code.svg │ │ │ ├── coffee.svg │ │ │ ├── cog.svg │ │ │ ├── cogs.svg │ │ │ ├── coins.svg │ │ │ ├── columns.svg │ │ │ ├── comment-alt.svg │ │ │ ├── comment-dollar.svg │ │ │ ├── comment-dots.svg │ │ │ ├── comment-medical.svg │ │ │ ├── comment-slash.svg │ │ │ ├── comment.svg │ │ │ ├── comments-dollar.svg │ │ │ ├── comments.svg │ │ │ ├── compact-disc.svg │ │ │ ├── compass.svg │ │ │ ├── compress-alt.svg │ │ │ ├── compress-arrows-alt.svg │ │ │ ├── compress.svg │ │ │ ├── concierge-bell.svg │ │ │ ├── cookie-bite.svg │ │ │ ├── cookie.svg │ │ │ ├── copy.svg │ │ │ ├── copyright.svg │ │ │ ├── couch.svg │ │ │ ├── credit-card.svg │ │ │ ├── crop-alt.svg │ │ │ ├── crop.svg │ │ │ ├── cross.svg │ │ │ ├── crosshairs.svg │ │ │ ├── crow.svg │ │ │ ├── crown.svg │ │ │ ├── crutch.svg │ │ │ ├── cube.svg │ │ │ ├── cubes.svg │ │ │ ├── cut.svg │ │ │ ├── database.svg │ │ │ ├── deaf.svg │ │ │ ├── democrat.svg │ │ │ ├── desktop.svg │ │ │ ├── dharmachakra.svg │ │ │ ├── diagnoses.svg │ │ │ ├── dice-d20.svg │ │ │ ├── dice-d6.svg │ │ │ ├── dice-five.svg │ │ │ ├── dice-four.svg │ │ │ ├── dice-one.svg │ │ │ ├── dice-six.svg │ │ │ ├── dice-three.svg │ │ │ ├── dice-two.svg │ │ │ ├── dice.svg │ │ │ ├── digital-tachograph.svg │ │ │ ├── directions.svg │ │ │ ├── disease.svg │ │ │ ├── divide.svg │ │ │ ├── dizzy.svg │ │ │ ├── dna.svg │ │ │ ├── dog.svg │ │ │ ├── dollar-sign.svg │ │ │ ├── dolly-flatbed.svg │ │ │ ├── dolly.svg │ │ │ ├── donate.svg │ │ │ ├── door-closed.svg │ │ │ ├── door-open.svg │ │ │ ├── dot-circle.svg │ │ │ ├── dove.svg │ │ │ ├── download.svg │ │ │ ├── drafting-compass.svg │ │ │ ├── dragon.svg │ │ │ ├── draw-polygon.svg │ │ │ ├── drum-steelpan.svg │ │ │ ├── drum.svg │ │ │ ├── drumstick-bite.svg │ │ │ ├── dumbbell.svg │ │ │ ├── dumpster-fire.svg │ │ │ ├── dumpster.svg │ │ │ ├── dungeon.svg │ │ │ ├── edit.svg │ │ │ ├── egg.svg │ │ │ ├── eject.svg │ │ │ ├── ellipsis-h.svg │ │ │ ├── ellipsis-v.svg │ │ │ ├── envelope-open-text.svg │ │ │ ├── envelope-open.svg │ │ │ ├── envelope-square.svg │ │ │ ├── envelope.svg │ │ │ ├── equals.svg │ │ │ ├── eraser.svg │ │ │ ├── ethernet.svg │ │ │ ├── euro-sign.svg │ │ │ ├── exchange-alt.svg │ │ │ ├── exclamation-circle.svg │ │ │ ├── exclamation-triangle.svg │ │ │ ├── exclamation.svg │ │ │ ├── expand-alt.svg │ │ │ ├── expand-arrows-alt.svg │ │ │ ├── expand.svg │ │ │ ├── external-link-alt.svg │ │ │ ├── external-link-square-alt.svg │ │ │ ├── eye-dropper.svg │ │ │ ├── eye-slash.svg │ │ │ ├── eye.svg │ │ │ ├── fan.svg │ │ │ ├── fast-backward.svg │ │ │ ├── fast-forward.svg │ │ │ ├── faucet.svg │ │ │ ├── fax.svg │ │ │ ├── feather-alt.svg │ │ │ ├── feather.svg │ │ │ ├── female.svg │ │ │ ├── fighter-jet.svg │ │ │ ├── file-alt.svg │ │ │ ├── file-archive.svg │ │ │ ├── file-audio.svg │ │ │ ├── file-code.svg │ │ │ ├── file-contract.svg │ │ │ ├── file-csv.svg │ │ │ ├── file-download.svg │ │ │ ├── file-excel.svg │ │ │ ├── file-export.svg │ │ │ ├── file-image.svg │ │ │ ├── file-import.svg │ │ │ ├── file-invoice-dollar.svg │ │ │ ├── file-invoice.svg │ │ │ ├── file-medical-alt.svg │ │ │ ├── file-medical.svg │ │ │ ├── file-pdf.svg │ │ │ ├── file-powerpoint.svg │ │ │ ├── file-prescription.svg │ │ │ ├── file-signature.svg │ │ │ ├── file-upload.svg │ │ │ ├── file-video.svg │ │ │ ├── file-word.svg │ │ │ ├── file.svg │ │ │ ├── fill-drip.svg │ │ │ ├── fill.svg │ │ │ ├── film.svg │ │ │ ├── filter.svg │ │ │ ├── fingerprint.svg │ │ │ ├── fire-alt.svg │ │ │ ├── fire-extinguisher.svg │ │ │ ├── fire.svg │ │ │ ├── first-aid.svg │ │ │ ├── fish.svg │ │ │ ├── fist-raised.svg │ │ │ ├── flag-checkered.svg │ │ │ ├── flag-usa.svg │ │ │ ├── flag.svg │ │ │ ├── flask.svg │ │ │ ├── flushed.svg │ │ │ ├── folder-minus.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder-plus.svg │ │ │ ├── folder.svg │ │ │ ├── font-awesome-logo-full.svg │ │ │ ├── font.svg │ │ │ ├── football-ball.svg │ │ │ ├── forward.svg │ │ │ ├── frog.svg │ │ │ ├── frown-open.svg │ │ │ ├── frown.svg │ │ │ ├── funnel-dollar.svg │ │ │ ├── futbol.svg │ │ │ ├── gamepad.svg │ │ │ ├── gas-pump.svg │ │ │ ├── gavel.svg │ │ │ ├── gem.svg │ │ │ ├── genderless.svg │ │ │ ├── ghost.svg │ │ │ ├── gift.svg │ │ │ ├── gifts.svg │ │ │ ├── glass-cheers.svg │ │ │ ├── glass-martini-alt.svg │ │ │ ├── glass-martini.svg │ │ │ ├── glass-whiskey.svg │ │ │ ├── glasses.svg │ │ │ ├── globe-africa.svg │ │ │ ├── globe-americas.svg │ │ │ ├── globe-asia.svg │ │ │ ├── globe-europe.svg │ │ │ ├── globe.svg │ │ │ ├── golf-ball.svg │ │ │ ├── gopuram.svg │ │ │ ├── graduation-cap.svg │ │ │ ├── greater-than-equal.svg │ │ │ ├── greater-than.svg │ │ │ ├── grimace.svg │ │ │ ├── grin-alt.svg │ │ │ ├── grin-beam-sweat.svg │ │ │ ├── grin-beam.svg │ │ │ ├── grin-hearts.svg │ │ │ ├── grin-squint-tears.svg │ │ │ ├── grin-squint.svg │ │ │ ├── grin-stars.svg │ │ │ ├── grin-tears.svg │ │ │ ├── grin-tongue-squint.svg │ │ │ ├── grin-tongue-wink.svg │ │ │ ├── grin-tongue.svg │ │ │ ├── grin-wink.svg │ │ │ ├── grin.svg │ │ │ ├── grip-horizontal.svg │ │ │ ├── grip-lines-vertical.svg │ │ │ ├── grip-lines.svg │ │ │ ├── grip-vertical.svg │ │ │ ├── guitar.svg │ │ │ ├── h-square.svg │ │ │ ├── hamburger.svg │ │ │ ├── hammer.svg │ │ │ ├── hamsa.svg │ │ │ ├── hand-holding-heart.svg │ │ │ ├── hand-holding-medical.svg │ │ │ ├── hand-holding-usd.svg │ │ │ ├── hand-holding-water.svg │ │ │ ├── hand-holding.svg │ │ │ ├── hand-lizard.svg │ │ │ ├── hand-middle-finger.svg │ │ │ ├── hand-paper.svg │ │ │ ├── hand-peace.svg │ │ │ ├── hand-point-down.svg │ │ │ ├── hand-point-left.svg │ │ │ ├── hand-point-right.svg │ │ │ ├── hand-point-up.svg │ │ │ ├── hand-pointer.svg │ │ │ ├── hand-rock.svg │ │ │ ├── hand-scissors.svg │ │ │ ├── hand-sparkles.svg │ │ │ ├── hand-spock.svg │ │ │ ├── hands-helping.svg │ │ │ ├── hands-wash.svg │ │ │ ├── hands.svg │ │ │ ├── handshake-alt-slash.svg │ │ │ ├── handshake-slash.svg │ │ │ ├── handshake.svg │ │ │ ├── hanukiah.svg │ │ │ ├── hard-hat.svg │ │ │ ├── hashtag.svg │ │ │ ├── hat-cowboy-side.svg │ │ │ ├── hat-cowboy.svg │ │ │ ├── hat-wizard.svg │ │ │ ├── hdd.svg │ │ │ ├── head-side-cough-slash.svg │ │ │ ├── head-side-cough.svg │ │ │ ├── head-side-mask.svg │ │ │ ├── head-side-virus.svg │ │ │ ├── heading.svg │ │ │ ├── headphones-alt.svg │ │ │ ├── headphones.svg │ │ │ ├── headset.svg │ │ │ ├── heart-broken.svg │ │ │ ├── heart.svg │ │ │ ├── heartbeat.svg │ │ │ ├── helicopter.svg │ │ │ ├── highlighter.svg │ │ │ ├── hiking.svg │ │ │ ├── hippo.svg │ │ │ ├── history.svg │ │ │ ├── hockey-puck.svg │ │ │ ├── holly-berry.svg │ │ │ ├── home.svg │ │ │ ├── horse-head.svg │ │ │ ├── horse.svg │ │ │ ├── hospital-alt.svg │ │ │ ├── hospital-symbol.svg │ │ │ ├── hospital-user.svg │ │ │ ├── hospital.svg │ │ │ ├── hot-tub.svg │ │ │ ├── hotdog.svg │ │ │ ├── hotel.svg │ │ │ ├── hourglass-end.svg │ │ │ ├── hourglass-half.svg │ │ │ ├── hourglass-start.svg │ │ │ ├── hourglass.svg │ │ │ ├── house-damage.svg │ │ │ ├── house-user.svg │ │ │ ├── hryvnia.svg │ │ │ ├── i-cursor.svg │ │ │ ├── ice-cream.svg │ │ │ ├── icicles.svg │ │ │ ├── icons.svg │ │ │ ├── id-badge.svg │ │ │ ├── id-card-alt.svg │ │ │ ├── id-card.svg │ │ │ ├── igloo.svg │ │ │ ├── image.svg │ │ │ ├── images.svg │ │ │ ├── inbox.svg │ │ │ ├── indent.svg │ │ │ ├── industry.svg │ │ │ ├── infinity.svg │ │ │ ├── info-circle.svg │ │ │ ├── info.svg │ │ │ ├── italic.svg │ │ │ ├── jedi.svg │ │ │ ├── joint.svg │ │ │ ├── journal-whills.svg │ │ │ ├── kaaba.svg │ │ │ ├── key.svg │ │ │ ├── keyboard.svg │ │ │ ├── khanda.svg │ │ │ ├── kiss-beam.svg │ │ │ ├── kiss-wink-heart.svg │ │ │ ├── kiss.svg │ │ │ ├── kiwi-bird.svg │ │ │ ├── landmark.svg │ │ │ ├── language.svg │ │ │ ├── laptop-code.svg │ │ │ ├── laptop-house.svg │ │ │ ├── laptop-medical.svg │ │ │ ├── laptop.svg │ │ │ ├── laugh-beam.svg │ │ │ ├── laugh-squint.svg │ │ │ ├── laugh-wink.svg │ │ │ ├── laugh.svg │ │ │ ├── layer-group.svg │ │ │ ├── leaf.svg │ │ │ ├── lemon.svg │ │ │ ├── less-than-equal.svg │ │ │ ├── less-than.svg │ │ │ ├── level-down-alt.svg │ │ │ ├── level-up-alt.svg │ │ │ ├── life-ring.svg │ │ │ ├── lightbulb.svg │ │ │ ├── link.svg │ │ │ ├── lira-sign.svg │ │ │ ├── list-alt.svg │ │ │ ├── list-ol.svg │ │ │ ├── list-ul.svg │ │ │ ├── list.svg │ │ │ ├── location-arrow.svg │ │ │ ├── lock-open.svg │ │ │ ├── lock.svg │ │ │ ├── long-arrow-alt-down.svg │ │ │ ├── long-arrow-alt-left.svg │ │ │ ├── long-arrow-alt-right.svg │ │ │ ├── long-arrow-alt-up.svg │ │ │ ├── low-vision.svg │ │ │ ├── luggage-cart.svg │ │ │ ├── lungs-virus.svg │ │ │ ├── lungs.svg │ │ │ ├── magic.svg │ │ │ ├── magnet.svg │ │ │ ├── mail-bulk.svg │ │ │ ├── male.svg │ │ │ ├── map-marked-alt.svg │ │ │ ├── map-marked.svg │ │ │ ├── map-marker-alt.svg │ │ │ ├── map-marker.svg │ │ │ ├── map-pin.svg │ │ │ ├── map-signs.svg │ │ │ ├── map.svg │ │ │ ├── marker.svg │ │ │ ├── mars-double.svg │ │ │ ├── mars-stroke-h.svg │ │ │ ├── mars-stroke-v.svg │ │ │ ├── mars-stroke.svg │ │ │ ├── mars.svg │ │ │ ├── mask.svg │ │ │ ├── medal.svg │ │ │ ├── medkit.svg │ │ │ ├── meh-blank.svg │ │ │ ├── meh-rolling-eyes.svg │ │ │ ├── meh.svg │ │ │ ├── memory.svg │ │ │ ├── menorah.svg │ │ │ ├── mercury.svg │ │ │ ├── meteor.svg │ │ │ ├── microchip.svg │ │ │ ├── microphone-alt-slash.svg │ │ │ ├── microphone-alt.svg │ │ │ ├── microphone-slash.svg │ │ │ ├── microphone.svg │ │ │ ├── microscope.svg │ │ │ ├── minus-circle.svg │ │ │ ├── minus-square.svg │ │ │ ├── minus.svg │ │ │ ├── mitten.svg │ │ │ ├── mobile-alt.svg │ │ │ ├── mobile.svg │ │ │ ├── money-bill-alt.svg │ │ │ ├── money-bill-wave-alt.svg │ │ │ ├── money-bill-wave.svg │ │ │ ├── money-bill.svg │ │ │ ├── money-check-alt.svg │ │ │ ├── money-check.svg │ │ │ ├── monument.svg │ │ │ ├── moon.svg │ │ │ ├── mortar-pestle.svg │ │ │ ├── mosque.svg │ │ │ ├── motorcycle.svg │ │ │ ├── mountain.svg │ │ │ ├── mouse-pointer.svg │ │ │ ├── mouse.svg │ │ │ ├── mug-hot.svg │ │ │ ├── music.svg │ │ │ ├── network-wired.svg │ │ │ ├── neuter.svg │ │ │ ├── newspaper.svg │ │ │ ├── not-equal.svg │ │ │ ├── notes-medical.svg │ │ │ ├── object-group.svg │ │ │ ├── object-ungroup.svg │ │ │ ├── oil-can.svg │ │ │ ├── om.svg │ │ │ ├── otter.svg │ │ │ ├── outdent.svg │ │ │ ├── pager.svg │ │ │ ├── paint-brush.svg │ │ │ ├── paint-roller.svg │ │ │ ├── palette.svg │ │ │ ├── pallet.svg │ │ │ ├── paper-plane.svg │ │ │ ├── paperclip.svg │ │ │ ├── parachute-box.svg │ │ │ ├── paragraph.svg │ │ │ ├── parking.svg │ │ │ ├── passport.svg │ │ │ ├── pastafarianism.svg │ │ │ ├── paste.svg │ │ │ ├── pause-circle.svg │ │ │ ├── pause.svg │ │ │ ├── paw.svg │ │ │ ├── peace.svg │ │ │ ├── pen-alt.svg │ │ │ ├── pen-fancy.svg │ │ │ ├── pen-nib.svg │ │ │ ├── pen-square.svg │ │ │ ├── pen.svg │ │ │ ├── pencil-alt.svg │ │ │ ├── pencil-ruler.svg │ │ │ ├── people-arrows.svg │ │ │ ├── people-carry.svg │ │ │ ├── pepper-hot.svg │ │ │ ├── percent.svg │ │ │ ├── percentage.svg │ │ │ ├── person-booth.svg │ │ │ ├── phone-alt.svg │ │ │ ├── phone-slash.svg │ │ │ ├── phone-square-alt.svg │ │ │ ├── phone-square.svg │ │ │ ├── phone-volume.svg │ │ │ ├── phone.svg │ │ │ ├── photo-video.svg │ │ │ ├── piggy-bank.svg │ │ │ ├── pills.svg │ │ │ ├── pizza-slice.svg │ │ │ ├── place-of-worship.svg │ │ │ ├── plane-arrival.svg │ │ │ ├── plane-departure.svg │ │ │ ├── plane-slash.svg │ │ │ ├── plane.svg │ │ │ ├── play-circle.svg │ │ │ ├── play.svg │ │ │ ├── plug.svg │ │ │ ├── plus-circle.svg │ │ │ ├── plus-square.svg │ │ │ ├── plus.svg │ │ │ ├── podcast.svg │ │ │ ├── poll-h.svg │ │ │ ├── poll.svg │ │ │ ├── poo-storm.svg │ │ │ ├── poo.svg │ │ │ ├── poop.svg │ │ │ ├── portrait.svg │ │ │ ├── pound-sign.svg │ │ │ ├── power-off.svg │ │ │ ├── pray.svg │ │ │ ├── praying-hands.svg │ │ │ ├── prescription-bottle-alt.svg │ │ │ ├── prescription-bottle.svg │ │ │ ├── prescription.svg │ │ │ ├── print.svg │ │ │ ├── procedures.svg │ │ │ ├── project-diagram.svg │ │ │ ├── pump-medical.svg │ │ │ ├── pump-soap.svg │ │ │ ├── puzzle-piece.svg │ │ │ ├── qrcode.svg │ │ │ ├── question-circle.svg │ │ │ ├── question.svg │ │ │ ├── quidditch.svg │ │ │ ├── quote-left.svg │ │ │ ├── quote-right.svg │ │ │ ├── quran.svg │ │ │ ├── radiation-alt.svg │ │ │ ├── radiation.svg │ │ │ ├── rainbow.svg │ │ │ ├── random.svg │ │ │ ├── receipt.svg │ │ │ ├── record-vinyl.svg │ │ │ ├── recycle.svg │ │ │ ├── redo-alt.svg │ │ │ ├── redo.svg │ │ │ ├── registered.svg │ │ │ ├── remove-format.svg │ │ │ ├── reply-all.svg │ │ │ ├── reply.svg │ │ │ ├── republican.svg │ │ │ ├── restroom.svg │ │ │ ├── retweet.svg │ │ │ ├── ribbon.svg │ │ │ ├── ring.svg │ │ │ ├── road.svg │ │ │ ├── robot.svg │ │ │ ├── rocket.svg │ │ │ ├── route.svg │ │ │ ├── rss-square.svg │ │ │ ├── rss.svg │ │ │ ├── ruble-sign.svg │ │ │ ├── ruler-combined.svg │ │ │ ├── ruler-horizontal.svg │ │ │ ├── ruler-vertical.svg │ │ │ ├── ruler.svg │ │ │ ├── running.svg │ │ │ ├── rupee-sign.svg │ │ │ ├── sad-cry.svg │ │ │ ├── sad-tear.svg │ │ │ ├── satellite-dish.svg │ │ │ ├── satellite.svg │ │ │ ├── save.svg │ │ │ ├── school.svg │ │ │ ├── screwdriver.svg │ │ │ ├── scroll.svg │ │ │ ├── sd-card.svg │ │ │ ├── search-dollar.svg │ │ │ ├── search-location.svg │ │ │ ├── search-minus.svg │ │ │ ├── search-plus.svg │ │ │ ├── search.svg │ │ │ ├── seedling.svg │ │ │ ├── server.svg │ │ │ ├── shapes.svg │ │ │ ├── share-alt-square.svg │ │ │ ├── share-alt.svg │ │ │ ├── share-square.svg │ │ │ ├── share.svg │ │ │ ├── shekel-sign.svg │ │ │ ├── shield-alt.svg │ │ │ ├── shield-virus.svg │ │ │ ├── ship.svg │ │ │ ├── shipping-fast.svg │ │ │ ├── shoe-prints.svg │ │ │ ├── shopping-bag.svg │ │ │ ├── shopping-basket.svg │ │ │ ├── shopping-cart.svg │ │ │ ├── shower.svg │ │ │ ├── shuttle-van.svg │ │ │ ├── sign-in-alt.svg │ │ │ ├── sign-language.svg │ │ │ ├── sign-out-alt.svg │ │ │ ├── sign.svg │ │ │ ├── signal.svg │ │ │ ├── signature.svg │ │ │ ├── sim-card.svg │ │ │ ├── sink.svg │ │ │ ├── sitemap.svg │ │ │ ├── skating.svg │ │ │ ├── skiing-nordic.svg │ │ │ ├── skiing.svg │ │ │ ├── skull-crossbones.svg │ │ │ ├── skull.svg │ │ │ ├── slash.svg │ │ │ ├── sleigh.svg │ │ │ ├── sliders-h.svg │ │ │ ├── smile-beam.svg │ │ │ ├── smile-wink.svg │ │ │ ├── smile.svg │ │ │ ├── smog.svg │ │ │ ├── smoking-ban.svg │ │ │ ├── smoking.svg │ │ │ ├── sms.svg │ │ │ ├── snowboarding.svg │ │ │ ├── snowflake.svg │ │ │ ├── snowman.svg │ │ │ ├── snowplow.svg │ │ │ ├── soap.svg │ │ │ ├── socks.svg │ │ │ ├── solar-panel.svg │ │ │ ├── sort-alpha-down-alt.svg │ │ │ ├── sort-alpha-down.svg │ │ │ ├── sort-alpha-up-alt.svg │ │ │ ├── sort-alpha-up.svg │ │ │ ├── sort-amount-down-alt.svg │ │ │ ├── sort-amount-down.svg │ │ │ ├── sort-amount-up-alt.svg │ │ │ ├── sort-amount-up.svg │ │ │ ├── sort-down.svg │ │ │ ├── sort-numeric-down-alt.svg │ │ │ ├── sort-numeric-down.svg │ │ │ ├── sort-numeric-up-alt.svg │ │ │ ├── sort-numeric-up.svg │ │ │ ├── sort-up.svg │ │ │ ├── sort.svg │ │ │ ├── spa.svg │ │ │ ├── space-shuttle.svg │ │ │ ├── spell-check.svg │ │ │ ├── spider.svg │ │ │ ├── spinner.svg │ │ │ ├── splotch.svg │ │ │ ├── spray-can.svg │ │ │ ├── square-full.svg │ │ │ ├── square-root-alt.svg │ │ │ ├── square.svg │ │ │ ├── stamp.svg │ │ │ ├── star-and-crescent.svg │ │ │ ├── star-half-alt.svg │ │ │ ├── star-half.svg │ │ │ ├── star-of-david.svg │ │ │ ├── star-of-life.svg │ │ │ ├── star.svg │ │ │ ├── step-backward.svg │ │ │ ├── step-forward.svg │ │ │ ├── stethoscope.svg │ │ │ ├── sticky-note.svg │ │ │ ├── stop-circle.svg │ │ │ ├── stop.svg │ │ │ ├── stopwatch-20.svg │ │ │ ├── stopwatch.svg │ │ │ ├── store-alt-slash.svg │ │ │ ├── store-alt.svg │ │ │ ├── store-slash.svg │ │ │ ├── store.svg │ │ │ ├── stream.svg │ │ │ ├── street-view.svg │ │ │ ├── strikethrough.svg │ │ │ ├── stroopwafel.svg │ │ │ ├── subscript.svg │ │ │ ├── subway.svg │ │ │ ├── suitcase-rolling.svg │ │ │ ├── suitcase.svg │ │ │ ├── sun.svg │ │ │ ├── superscript.svg │ │ │ ├── surprise.svg │ │ │ ├── swatchbook.svg │ │ │ ├── swimmer.svg │ │ │ ├── swimming-pool.svg │ │ │ ├── synagogue.svg │ │ │ ├── sync-alt.svg │ │ │ ├── sync.svg │ │ │ ├── syringe.svg │ │ │ ├── table-tennis.svg │ │ │ ├── table.svg │ │ │ ├── tablet-alt.svg │ │ │ ├── tablet.svg │ │ │ ├── tablets.svg │ │ │ ├── tachometer-alt.svg │ │ │ ├── tag.svg │ │ │ ├── tags.svg │ │ │ ├── tape.svg │ │ │ ├── tasks.svg │ │ │ ├── taxi.svg │ │ │ ├── teeth-open.svg │ │ │ ├── teeth.svg │ │ │ ├── temperature-high.svg │ │ │ ├── temperature-low.svg │ │ │ ├── tenge.svg │ │ │ ├── terminal.svg │ │ │ ├── text-height.svg │ │ │ ├── text-width.svg │ │ │ ├── th-large.svg │ │ │ ├── th-list.svg │ │ │ ├── th.svg │ │ │ ├── theater-masks.svg │ │ │ ├── thermometer-empty.svg │ │ │ ├── thermometer-full.svg │ │ │ ├── thermometer-half.svg │ │ │ ├── thermometer-quarter.svg │ │ │ ├── thermometer-three-quarters.svg │ │ │ ├── thermometer.svg │ │ │ ├── thumbs-down.svg │ │ │ ├── thumbs-up.svg │ │ │ ├── thumbtack.svg │ │ │ ├── ticket-alt.svg │ │ │ ├── times-circle.svg │ │ │ ├── times.svg │ │ │ ├── tint-slash.svg │ │ │ ├── tint.svg │ │ │ ├── tired.svg │ │ │ ├── toggle-off.svg │ │ │ ├── toggle-on.svg │ │ │ ├── toilet-paper-slash.svg │ │ │ ├── toilet-paper.svg │ │ │ ├── toilet.svg │ │ │ ├── toolbox.svg │ │ │ ├── tools.svg │ │ │ ├── tooth.svg │ │ │ ├── torah.svg │ │ │ ├── torii-gate.svg │ │ │ ├── tractor.svg │ │ │ ├── trademark.svg │ │ │ ├── traffic-light.svg │ │ │ ├── trailer.svg │ │ │ ├── train.svg │ │ │ ├── tram.svg │ │ │ ├── transgender-alt.svg │ │ │ ├── transgender.svg │ │ │ ├── trash-alt.svg │ │ │ ├── trash-restore-alt.svg │ │ │ ├── trash-restore.svg │ │ │ ├── trash.svg │ │ │ ├── tree.svg │ │ │ ├── trophy.svg │ │ │ ├── truck-loading.svg │ │ │ ├── truck-monster.svg │ │ │ ├── truck-moving.svg │ │ │ ├── truck-pickup.svg │ │ │ ├── truck.svg │ │ │ ├── tshirt.svg │ │ │ ├── tty.svg │ │ │ ├── tv.svg │ │ │ ├── umbrella-beach.svg │ │ │ ├── umbrella.svg │ │ │ ├── underline.svg │ │ │ ├── undo-alt.svg │ │ │ ├── undo.svg │ │ │ ├── universal-access.svg │ │ │ ├── university.svg │ │ │ ├── unlink.svg │ │ │ ├── unlock-alt.svg │ │ │ ├── unlock.svg │ │ │ ├── upload.svg │ │ │ ├── user-alt-slash.svg │ │ │ ├── user-alt.svg │ │ │ ├── user-astronaut.svg │ │ │ ├── user-check.svg │ │ │ ├── user-circle.svg │ │ │ ├── user-clock.svg │ │ │ ├── user-cog.svg │ │ │ ├── user-edit.svg │ │ │ ├── user-friends.svg │ │ │ ├── user-graduate.svg │ │ │ ├── user-injured.svg │ │ │ ├── user-lock.svg │ │ │ ├── user-md.svg │ │ │ ├── user-minus.svg │ │ │ ├── user-ninja.svg │ │ │ ├── user-nurse.svg │ │ │ ├── user-plus.svg │ │ │ ├── user-secret.svg │ │ │ ├── user-shield.svg │ │ │ ├── user-slash.svg │ │ │ ├── user-tag.svg │ │ │ ├── user-tie.svg │ │ │ ├── user-times.svg │ │ │ ├── user.svg │ │ │ ├── users-cog.svg │ │ │ ├── users-slash.svg │ │ │ ├── users.svg │ │ │ ├── utensil-spoon.svg │ │ │ ├── utensils.svg │ │ │ ├── vector-square.svg │ │ │ ├── venus-double.svg │ │ │ ├── venus-mars.svg │ │ │ ├── venus.svg │ │ │ ├── vest-patches.svg │ │ │ ├── vest.svg │ │ │ ├── vial.svg │ │ │ ├── vials.svg │ │ │ ├── video-slash.svg │ │ │ ├── video.svg │ │ │ ├── vihara.svg │ │ │ ├── virus-slash.svg │ │ │ ├── virus.svg │ │ │ ├── viruses.svg │ │ │ ├── voicemail.svg │ │ │ ├── volleyball-ball.svg │ │ │ ├── volume-down.svg │ │ │ ├── volume-mute.svg │ │ │ ├── volume-off.svg │ │ │ ├── volume-up.svg │ │ │ ├── vote-yea.svg │ │ │ ├── vr-cardboard.svg │ │ │ ├── walking.svg │ │ │ ├── wallet.svg │ │ │ ├── warehouse.svg │ │ │ ├── water.svg │ │ │ ├── wave-square.svg │ │ │ ├── weight-hanging.svg │ │ │ ├── weight.svg │ │ │ ├── wheelchair.svg │ │ │ ├── wifi.svg │ │ │ ├── wind.svg │ │ │ ├── window-close.svg │ │ │ ├── window-maximize.svg │ │ │ ├── window-minimize.svg │ │ │ ├── window-restore.svg │ │ │ ├── wine-bottle.svg │ │ │ ├── wine-glass-alt.svg │ │ │ ├── wine-glass.svg │ │ │ ├── won-sign.svg │ │ │ ├── wrench.svg │ │ │ ├── x-ray.svg │ │ │ ├── yen-sign.svg │ │ │ └── yin-yang.svg │ ├── image.svg │ ├── link.svg │ ├── map-marked-alt.svg │ ├── newspaper.svg │ ├── numeri.svg │ ├── question-solid.svg │ ├── sitemap.svg │ ├── twitter-brands.svg │ └── user.svg ├── index.js ├── reducers │ ├── amministrazioneTrasparenteTree.js │ ├── calendarDaySearchReducer.js │ ├── calendarSearchReducer.js │ ├── dettagliProcedimento.js │ ├── index.js │ ├── originalQueryReducer.js │ ├── searchBandiFiltersReducer.js │ ├── searchFiltersReducer.js │ ├── searchResultsReducer.js │ └── twitterPosts.js ├── routes.js └── theme.js ├── test-setup-config.js ├── theme ├── ItaliaTheme │ ├── Addons │ │ ├── customerSatisfaction.scss │ │ └── volto-gdpr-privacy.scss │ ├── Blocks │ │ ├── _HTML.scss │ │ ├── _accordion.scss │ │ ├── _alert.scss │ │ ├── _argumentsInEvidence.scss │ │ ├── _bandiInEvidenceTemplate.scss │ │ ├── _bandiSearch.scss │ │ ├── _break.scss │ │ ├── _calendar.scss │ │ ├── _cardWithImageAndInEvidence.scss │ │ ├── _cardWithImageTextBlock.scss │ │ ├── _cardWithSlideUpTextTemplate.scss │ │ ├── _completeBlockLinkstemplate.scss │ │ ├── _contacts.scss │ │ ├── _contentInEvidenceTemplate.scss │ │ ├── _countdown.scss │ │ ├── _ctaBlock.scss │ │ ├── _eventSearch.scss │ │ ├── _form.scss │ │ ├── _gridGalleryTemplate.scss │ │ ├── _hero.scss │ │ ├── _highlitedContent.scss │ │ ├── _iconBlocks.scss │ │ ├── _imageBlock.scss │ │ ├── _imageCardTextBlock.scss │ │ ├── _inevidencetemplate.scss │ │ ├── _listing.scss │ │ ├── _mapTemplate.scss │ │ ├── _numbers.scss │ │ ├── _photogallerytemplate.scss │ │ ├── _ribbonCardTemplate.scss │ │ ├── _rssBlock.scss │ │ ├── _searchSections.scss │ │ ├── _simpleCardTemplate.scss │ │ ├── _simpleCardTextBlock.scss │ │ ├── _simpleListTemplate.scss │ │ ├── _skeleton.scss │ │ ├── _sliderTemplate.scss │ │ ├── _smallblockLinkstemplate.scss │ │ ├── _squaresImageTemplate.scss │ │ ├── _subblocks-edit.scss │ │ ├── _tableOfContents.scss │ │ ├── _twitterPosts.scss │ │ ├── _video.scss │ │ ├── _videoGallery.scss │ │ └── common │ │ │ └── _searchBlockFilters.scss │ ├── Components │ │ ├── _galleryPreview.scss │ │ ├── _locationsMap.scss │ │ ├── _logo.scss │ │ ├── _megamenu.scss │ │ ├── _metadata.scss │ │ ├── _mobileMenu.scss │ │ ├── _pageHeader.scss │ │ ├── _pageLoader.scss │ │ ├── _parentSiteMenu.scss │ │ ├── _relatedItemInEvidence.scss │ │ ├── _scrollToTop.scss │ │ ├── _sharing.scss │ │ ├── _subsiteFooter.scss │ │ ├── _subsiteHeader.scss │ │ ├── _tertiaryMenu.scss │ │ ├── _unauthorized.scss │ │ └── _venue.scss │ ├── Print │ │ ├── _all_pages.scss │ │ ├── _bandi.scss │ │ ├── _blocks.scss │ │ ├── _event.scss │ │ ├── _news_items.scss │ │ ├── _persona.scss │ │ └── _servizio.scss │ ├── Subsites │ │ ├── ItaliaTheme │ │ │ ├── Blocks │ │ │ │ ├── _argumentsInEvidence.scss │ │ │ │ ├── _cardWithImageAndInEvidence.scss │ │ │ │ ├── _completeBlockLinktemplate.scss │ │ │ │ ├── _highlitedContent.scss │ │ │ │ ├── _ribbonCardTemplate.scss │ │ │ │ ├── _searchSections.scss │ │ │ │ └── _twitterPosts.scss │ │ │ ├── Components │ │ │ │ └── _subsiteFooter.scss │ │ │ ├── Views │ │ │ │ └── _common.scss │ │ │ └── _common.scss │ │ ├── _all_variables.scss │ │ ├── _common.scss │ │ ├── _homepage.scss │ │ ├── _mixin.scss │ │ ├── bootstrap-italia │ │ │ ├── _brand-text.scss │ │ │ └── custom │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _card.scss │ │ │ │ ├── _chips.scss │ │ │ │ ├── _dropdown.scss │ │ │ │ ├── _header.scss │ │ │ │ ├── _headercenter.scss │ │ │ │ ├── _headernavbar.scss │ │ │ │ ├── _headerslim.scss │ │ │ │ ├── _linklist.scss │ │ │ │ ├── _megamenu.scss │ │ │ │ ├── _nav.scss │ │ │ │ ├── _navigation.scss │ │ │ │ └── _navscroll.scss │ │ ├── light-blue.scss │ │ ├── light-pink.scss │ │ ├── light-teal.scss │ │ ├── light-yellow.scss │ │ ├── magenta.scss │ │ ├── teal.scss │ │ ├── templates │ │ │ ├── _light-pink.scss │ │ │ ├── _light-teal.scss │ │ │ ├── _light-yellow.scss │ │ │ └── _white.scss │ │ ├── white.scss │ │ └── yellow.scss │ ├── Views │ │ ├── _bando.scss │ │ ├── _cartellaModulistica.scss │ │ ├── _common.scss │ │ ├── _embeddedVideo.scss │ │ ├── _evento.scss │ │ ├── _faqFolder.scss │ │ ├── _folder.scss │ │ ├── _homepage.scss │ │ ├── _modules.scss │ │ ├── _paginaArgomentoView.scss │ │ ├── _slider.scss │ │ ├── _sponsors.scss │ │ ├── _trasparenzaView.scss │ │ └── _uo.scss │ ├── Widgets │ │ ├── _blocksWidget.scss │ │ ├── _iconWidget.scss │ │ ├── _reactSelect.scss │ │ ├── _searchSectionsConfigurationWidget.scss │ │ └── _subsiteSocialLinks.scss │ ├── _ar.scss │ ├── _common.scss │ ├── _home.scss │ ├── _main.scss │ └── _sitemap.scss ├── _cms-ui.scss ├── _site-variables.scss ├── bootstrap-override │ ├── _bootstrap-italia-site.scss │ ├── bootstrap-italia │ │ ├── _anchor.scss │ │ ├── _borders.scss │ │ ├── _brand-text.scss │ │ ├── _breadcrumb.scss │ │ ├── _callout.scss │ │ ├── _card.scss │ │ ├── _chips.scss │ │ ├── _footer.scss │ │ ├── _form-toggles.scss │ │ ├── _form.scss │ │ ├── _grid.scss │ │ ├── _headercenter.scss │ │ ├── _headerslim.scss │ │ ├── _input-group.scss │ │ ├── _megamenu.scss │ │ ├── _navigation.scss │ │ ├── _skiplinks.scss │ │ └── _type.scss │ └── bootstrap │ │ ├── _print.scss │ │ └── _reboot.scss ├── extras │ ├── _add_content_menu.scss │ ├── _blocks-chooser.scss │ ├── _blocks.scss │ ├── _checkbox.scss │ ├── _file-widget.scss │ ├── _forms.scss │ ├── _modals.scss │ ├── _search.scss │ ├── _sidebar.scss │ ├── _tables.scss │ ├── _toolbar.scss │ └── _video.scss ├── site.scss └── theme.config └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/bundle_size.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/.github/workflows/bundle_size.yml -------------------------------------------------------------------------------- /.github/workflows/bundle_size_comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/.github/workflows/bundle_size_comment.md -------------------------------------------------------------------------------- /.github/workflows/develop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/.github/workflows/develop.yml -------------------------------------------------------------------------------- /.github/workflows/master.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/.github/workflows/master.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.github/workflows/themes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/.github/workflows/themes.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npx lint-staged 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/gallium 2 | -------------------------------------------------------------------------------- /.release-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/.release-it.json -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.2.3.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/.yarn/releases/yarn-3.2.3.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /COMMITLINT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/COMMITLINT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/README.md -------------------------------------------------------------------------------- /VOLTO-BRANCHES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/VOLTO-BRANCHES.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@plone/volto/babel'); 2 | -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { extends: ['@commitlint/config-conventional'] }; 2 | -------------------------------------------------------------------------------- /docker-compose.test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/docker-compose.test.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /ecosystem.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/ecosystem.config.js -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /error-503.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/error-503.html -------------------------------------------------------------------------------- /iocomune.ecosystem.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/iocomune.ecosystem.config.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/jsconfig.json -------------------------------------------------------------------------------- /locales/de/LC_MESSAGES/volto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/locales/de/LC_MESSAGES/volto.po -------------------------------------------------------------------------------- /locales/en/LC_MESSAGES/volto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/locales/en/LC_MESSAGES/volto.po -------------------------------------------------------------------------------- /locales/fr/LC_MESSAGES/volto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/locales/fr/LC_MESSAGES/volto.po -------------------------------------------------------------------------------- /locales/it/LC_MESSAGES/volto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/locales/it/LC_MESSAGES/volto.po -------------------------------------------------------------------------------- /locales/ja/LC_MESSAGES/volto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/locales/ja/LC_MESSAGES/volto.po -------------------------------------------------------------------------------- /locales/nl/LC_MESSAGES/volto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/locales/nl/LC_MESSAGES/volto.po -------------------------------------------------------------------------------- /locales/volto.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/locales/volto.pot -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/package.json -------------------------------------------------------------------------------- /patches/patchit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/patches/patchit.sh -------------------------------------------------------------------------------- /patches/razzle-jest.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/patches/razzle-jest.patch -------------------------------------------------------------------------------- /public/critical____not_used.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/public/critical____not_used.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /razzle.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/razzle.config.js -------------------------------------------------------------------------------- /src/actions/calendarDaySearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/actions/calendarDaySearch.js -------------------------------------------------------------------------------- /src/actions/calendarSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/actions/calendarSearch.js -------------------------------------------------------------------------------- /src/actions/getAmministrazioneTrasparenteTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/actions/getAmministrazioneTrasparenteTree.js -------------------------------------------------------------------------------- /src/actions/getDettagliProcedimento.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/actions/getDettagliProcedimento.js -------------------------------------------------------------------------------- /src/actions/getSearchBandiFilters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/actions/getSearchBandiFilters.js -------------------------------------------------------------------------------- /src/actions/getSearchFilters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/actions/getSearchFilters.js -------------------------------------------------------------------------------- /src/actions/getSearchResults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/actions/getSearchResults.js -------------------------------------------------------------------------------- /src/actions/getTwitterPosts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/actions/getTwitterPosts.js -------------------------------------------------------------------------------- /src/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/actions/index.js -------------------------------------------------------------------------------- /src/actions/setOriginalQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/actions/setOriginalQuery.js -------------------------------------------------------------------------------- /src/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/client.js -------------------------------------------------------------------------------- /src/components/Checkbox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/Checkbox.jsx -------------------------------------------------------------------------------- /src/components/Collapse.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/Collapse.jsx -------------------------------------------------------------------------------- /src/components/Image/Image.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/Image/Image.jsx -------------------------------------------------------------------------------- /src/components/Image/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/Image/helpers.js -------------------------------------------------------------------------------- /src/components/ItaliaTheme/AppExtras/GenericAppExtras.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/AppExtras/GenericAppExtras.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/AppExtras/HandleAnchor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/AppExtras/HandleAnchor.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/AppExtras/PageLoader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/AppExtras/PageLoader.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/Accordion/Edit.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/Accordion/Edit.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/Accordion/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/Accordion/Sidebar.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/Accordion/View.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/Accordion/View.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/Alert/Edit.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/Alert/Edit.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/Alert/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/Alert/Sidebar.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/Alert/View.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/Alert/View.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/BandiSearch/Body.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/BandiSearch/Body.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/BandiSearch/Edit.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/BandiSearch/Edit.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/BandiSearch/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/BandiSearch/Sidebar.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/BandiSearch/View.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/BandiSearch/View.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/Break/Edit.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/Break/Edit.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/Break/View.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/Break/View.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/CTABlock/Block.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/CTABlock/Block.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/CTABlock/BodyWrapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/CTABlock/BodyWrapper.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/CTABlock/Edit.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/CTABlock/Edit.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/CTABlock/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/CTABlock/Sidebar.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/CTABlock/View.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/CTABlock/View.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/Calendar/Body.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/Calendar/Body.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/Calendar/Edit.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/Calendar/Edit.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/Calendar/Item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/Calendar/Item.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/Calendar/View.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/Calendar/View.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/ContactsBlock/Edit.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/ContactsBlock/Edit.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/ContactsBlock/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/ContactsBlock/Sidebar.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/ContactsBlock/View.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/ContactsBlock/View.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/CountDown/Background.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/CountDown/Background.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/CountDown/Body.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/CountDown/Body.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/CountDown/CountDown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/CountDown/CountDown.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/CountDown/Edit.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/CountDown/Edit.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/CountDown/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/CountDown/Sidebar.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/CountDown/View.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/CountDown/View.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/EventSearch/Body.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/EventSearch/Body.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/EventSearch/Edit.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/EventSearch/Edit.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/EventSearch/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/EventSearch/Sidebar.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/EventSearch/View.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/EventSearch/View.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/HTML/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/HTML/Sidebar.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/IconBlocks/Edit.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/IconBlocks/Edit.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/IconBlocks/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/IconBlocks/Sidebar.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/IconBlocks/View.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/IconBlocks/View.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/Listing/Commons/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/Listing/Commons/utils.js -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/Listing/MapTemplate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/Listing/MapTemplate.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/NumbersBlock/Edit.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/NumbersBlock/Edit.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/NumbersBlock/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/NumbersBlock/Sidebar.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/NumbersBlock/View.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/NumbersBlock/View.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/RssBlock/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/RssBlock/utils.js -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/SearchSections/Body.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/SearchSections/Body.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/SearchSections/Edit.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/SearchSections/Edit.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/SearchSections/View.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/SearchSections/View.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/TwitterPosts/Body.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/TwitterPosts/Body.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/TwitterPosts/Edit.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/TwitterPosts/Edit.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/TwitterPosts/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/TwitterPosts/Sidebar.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/TwitterPosts/Skeleton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/TwitterPosts/Skeleton.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/TwitterPosts/View.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/TwitterPosts/View.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/UOSearch/Body.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/UOSearch/Body.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/UOSearch/Edit.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/UOSearch/Edit.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/UOSearch/FiltersConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/UOSearch/FiltersConfig.js -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/UOSearch/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/UOSearch/Sidebar.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/UOSearch/View.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/UOSearch/View.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/VideoGallery/Body.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/VideoGallery/Body.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/VideoGallery/Edit.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/VideoGallery/Edit.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/VideoGallery/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/VideoGallery/Sidebar.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Blocks/VideoGallery/View.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Blocks/VideoGallery/View.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/BrandText/BrandText.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/BrandText/BrandText.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Breadcrumbs/Breadcrumbs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Breadcrumbs/Breadcrumbs.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Cards/CardCategory.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Cards/CardCategory.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Cards/CardPersona.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Cards/CardPersona.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Footer/FooterInfos.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Footer/FooterInfos.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Footer/FooterMain.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Footer/FooterMain.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Footer/FooterNavigation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Footer/FooterNavigation.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Footer/FooterSmall.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Footer/FooterSmall.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Footer/FooterSocials.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Footer/FooterSocials.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Footer/SubsiteFooter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Footer/SubsiteFooter.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Header/HeaderCenter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Header/HeaderCenter.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Header/HeaderSlim.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Header/HeaderSlim.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Header/HeaderSlim/ArLogin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Header/HeaderSlim/ArLogin.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Header/ParentSiteMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Header/ParentSiteMenu.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Header/SocialHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Header/SocialHeader.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Header/SubsiteHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Header/SubsiteHeader.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Icons/DesignIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Icons/DesignIcon.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Icons/FontAwesomeIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Icons/FontAwesomeIcon.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Icons/Icon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Icons/Icon.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Icons/SectionIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Icons/SectionIcon.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Icons/__mocks__/Icon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Icons/__mocks__/Icon.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Icons/common/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Icons/common/common.js -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Icons/common/common_extend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Icons/common/common_extend.js -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Icons/svg/TelegramSVG.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Icons/svg/TelegramSVG.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Logo/Logo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Logo/Logo.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Logo/it-pa-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Logo/it-pa-white.png -------------------------------------------------------------------------------- /src/components/ItaliaTheme/LogoFooter/LogoFooter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/LogoFooter/LogoFooter.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/MegaMenu/MegaMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/MegaMenu/MegaMenu.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/MenuSecondary/MenuSecondary.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/MenuSecondary/MenuSecondary.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Pagination/Pagination.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Pagination/Pagination.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Pagination/PaginationItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Pagination/PaginationItem.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Pagination/createPaginationItems/index.js: -------------------------------------------------------------------------------- 1 | export default from './createPaginationItems'; 2 | -------------------------------------------------------------------------------- /src/components/ItaliaTheme/ScrollToTop/ScrollToTop.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/ScrollToTop/ScrollToTop.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Search/ResultItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Search/ResultItem.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Search/Search.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Search/Search.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Search/SearchCTs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Search/SearchCTs.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Search/SearchSections.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Search/SearchSections.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Search/SearchTopics.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Search/SearchTopics.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Search/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Search/utils.js -------------------------------------------------------------------------------- /src/components/ItaliaTheme/SkipLinks/SkipLinks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/SkipLinks/SkipLinks.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/Unauthorized/Unauthorized.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/Unauthorized/Unauthorized.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/BandoView/ApprofondimentoModulo.jsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/BandoView/BandoDate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/BandoView/BandoDate.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/BandoView/BandoServizi.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/BandoView/BandoServizi.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/BandoView/BandoText.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/BandoView/BandoText.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/BandoView/BandoView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/BandoView/BandoView.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/Actions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/Actions.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/Attachment.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/Attachment.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/Attachments.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/Attachments.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/BandoDates.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/BandoDates.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/ContactLink.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/ContactLink.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/ContentImage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/ContentImage.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/CuredBy.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/CuredBy.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/Dates.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/Dates.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/EmbeddedVideo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/EmbeddedVideo.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/Events.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/Events.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/Gallery.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/Gallery.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/GenericCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/GenericCard.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/HelpBox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/HelpBox.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/LocationItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/LocationItem.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/Locations.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/Locations.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/LocationsMap.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/LocationsMap.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/Metadata.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/Metadata.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/Module.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/Module.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/Modules.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/Modules.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/NewsCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/NewsCard.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/OfficeCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/OfficeCard.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/PageHeaderNav.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/PageHeaderNav.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/PageMetadata.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/PageMetadata.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/RelatedArticles.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/RelatedArticles.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/RelatedItems.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/RelatedItems.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/RelatedNews.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/RelatedNews.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/RenderBlocks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/RenderBlocks.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/RichText.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/RichText.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/RichTextArticle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/RichTextArticle.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/RichTextRender.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/RichTextRender.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/Sharing.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/Sharing.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/SideMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/SideMenu.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/SmallVenue.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/SmallVenue.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/Sponsors.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/Sponsors.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/TextOrBlocks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/TextOrBlocks.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/Venue.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/Venue.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/VenuesSmall.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/VenuesSmall.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/WideImage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/WideImage.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/Commons/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/Commons/index.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/EventoView/EventoCosE.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/EventoView/EventoCosE.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/EventoView/EventoCosti.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/EventoView/EventoCosti.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/EventoView/EventoLuoghi.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/EventoView/EventoLuoghi.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/EventoView/EventoView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/EventoView/EventoView.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/FAQ/FaqFolder/SearchBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/FAQ/FaqFolder/SearchBar.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/FAQ/FaqView/FaqView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/FAQ/FaqView/FaqView.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/ModuloView/ModuloFiles.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/ModuloView/ModuloFiles.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/ModuloView/ModuloText.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/ModuloView/ModuloText.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/ModuloView/ModuloView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/ModuloView/ModuloView.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/PageView/PageView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/PageView/PageView.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/PersonaView/PersonaView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/PersonaView/PersonaView.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/UOView/UOContacts.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/UOView/UOContacts.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/UOView/UODocuments.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/UOView/UODocuments.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/UOView/UOMoreInfos.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/UOView/UOMoreInfos.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/UOView/UOPeople.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/UOView/UOPeople.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/UOView/UOServices.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/UOView/UOServices.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/UOView/UOStructure.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/UOView/UOStructure.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/UOView/UOTelephones.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/UOView/UOTelephones.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/UOView/UOView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/UOView/UOView.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/UOView/UOWhatDoesItDo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/UOView/UOWhatDoesItDo.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/VenueView/VenueContacts.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/VenueView/VenueContacts.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/VenueView/VenueServices.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/VenueView/VenueServices.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/VenueView/VenueView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/VenueView/VenueView.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/VenueView/VenueWhere.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/VenueView/VenueWhere.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/ViewUtils.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/ViewUtils.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/View/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/View/index.js -------------------------------------------------------------------------------- /src/components/ItaliaTheme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/index.js -------------------------------------------------------------------------------- /src/components/ItaliaTheme/manage/Widgets/FileWidget.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/manage/Widgets/FileWidget.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/manage/Widgets/IconWidget.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/manage/Widgets/IconWidget.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/manage/Widgets/LinkToWidget.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/manage/Widgets/LinkToWidget.jsx -------------------------------------------------------------------------------- /src/components/ItaliaTheme/manage/Widgets/TinymceWidget.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/ItaliaTheme/manage/Widgets/TinymceWidget.jsx -------------------------------------------------------------------------------- /src/components/SelectInput/SelectInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/SelectInput/SelectInput.jsx -------------------------------------------------------------------------------- /src/components/SelectInput/select-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/SelectInput/select-styles.css -------------------------------------------------------------------------------- /src/components/TextInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/TextInput.jsx -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/components/slick-carousel/slick/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/slick-carousel/slick/ajax-loader.gif -------------------------------------------------------------------------------- /src/components/slick-carousel/slick/slick-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/components/slick-carousel/slick/slick-theme.css -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/config.js -------------------------------------------------------------------------------- /src/config/Blocks/ListingOptions/bandiInEvidenceTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/config/Blocks/ListingOptions/bandiInEvidenceTemplate.js -------------------------------------------------------------------------------- /src/config/Blocks/ListingOptions/cardWithImageTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/config/Blocks/ListingOptions/cardWithImageTemplate.js -------------------------------------------------------------------------------- /src/config/Blocks/ListingOptions/defaultOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/config/Blocks/ListingOptions/defaultOptions.js -------------------------------------------------------------------------------- /src/config/Blocks/ListingOptions/inEvidenceTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/config/Blocks/ListingOptions/inEvidenceTemplate.js -------------------------------------------------------------------------------- /src/config/Blocks/ListingOptions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/config/Blocks/ListingOptions/index.js -------------------------------------------------------------------------------- /src/config/Blocks/ListingOptions/mapTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/config/Blocks/ListingOptions/mapTemplate.js -------------------------------------------------------------------------------- /src/config/Blocks/ListingOptions/photogalleryTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/config/Blocks/ListingOptions/photogalleryTemplate.js -------------------------------------------------------------------------------- /src/config/Blocks/ListingOptions/ribbonCardTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/config/Blocks/ListingOptions/ribbonCardTemplate.js -------------------------------------------------------------------------------- /src/config/Blocks/ListingOptions/simpleCardTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/config/Blocks/ListingOptions/simpleCardTemplate.js -------------------------------------------------------------------------------- /src/config/Blocks/ListingOptions/simpleListTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/config/Blocks/ListingOptions/simpleListTemplate.js -------------------------------------------------------------------------------- /src/config/Blocks/ListingOptions/sliderTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/config/Blocks/ListingOptions/sliderTemplate.js -------------------------------------------------------------------------------- /src/config/Blocks/ListingOptions/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/config/Blocks/ListingOptions/utils.js -------------------------------------------------------------------------------- /src/config/Blocks/blocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/config/Blocks/blocks.js -------------------------------------------------------------------------------- /src/config/Blocks/listingVariations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/config/Blocks/listingVariations.js -------------------------------------------------------------------------------- /src/config/RichTextEditor/ToolbarButtons/AlignButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/config/RichTextEditor/ToolbarButtons/AlignButton.jsx -------------------------------------------------------------------------------- /src/config/RichTextEditor/ToolbarButtons/ButtonsButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/config/RichTextEditor/ToolbarButtons/ButtonsButton.jsx -------------------------------------------------------------------------------- /src/config/RichTextEditor/ToolbarButtons/CalloutsButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/config/RichTextEditor/ToolbarButtons/CalloutsButton.jsx -------------------------------------------------------------------------------- /src/config/RichTextEditor/ToolbarButtons/HeadingsButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/config/RichTextEditor/ToolbarButtons/HeadingsButton.jsx -------------------------------------------------------------------------------- /src/config/RichTextEditor/ToolbarButtons/TextSizeButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/config/RichTextEditor/ToolbarButtons/TextSizeButton.jsx -------------------------------------------------------------------------------- /src/config/RichTextEditor/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/config/RichTextEditor/config.js -------------------------------------------------------------------------------- /src/config/Subsites/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/config/Subsites/index.js -------------------------------------------------------------------------------- /src/config/Subsites/light-blue.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/config/Subsites/light-blue.jsx -------------------------------------------------------------------------------- /src/config/Subsites/light-pink.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/config/Subsites/light-pink.jsx -------------------------------------------------------------------------------- /src/config/Subsites/light-teal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/config/Subsites/light-teal.jsx -------------------------------------------------------------------------------- /src/config/Subsites/light-yellow.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/config/Subsites/light-yellow.jsx -------------------------------------------------------------------------------- /src/config/Subsites/magenta.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/config/Subsites/magenta.jsx -------------------------------------------------------------------------------- /src/config/Subsites/teal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/config/Subsites/teal.jsx -------------------------------------------------------------------------------- /src/config/Subsites/white.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/config/Subsites/white.jsx -------------------------------------------------------------------------------- /src/config/Subsites/yellow.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/config/Subsites/yellow.jsx -------------------------------------------------------------------------------- /src/config/Views/views.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/config/Views/views.js -------------------------------------------------------------------------------- /src/config/Widgets/widgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/config/Widgets/widgets.js -------------------------------------------------------------------------------- /src/config/italiaConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/config/italiaConfig.js -------------------------------------------------------------------------------- /src/config/loadables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/config/loadables.js -------------------------------------------------------------------------------- /src/config/volto-gdpr-privacy-defaultPanelConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/config/volto-gdpr-privacy-defaultPanelConfig.js -------------------------------------------------------------------------------- /src/constants/ActionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/constants/ActionTypes.js -------------------------------------------------------------------------------- /src/customizations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/customizations/README.md -------------------------------------------------------------------------------- /src/customizations/volto-form-block/components/Edit.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/customizations/volto-form-block/components/Edit.jsx -------------------------------------------------------------------------------- /src/customizations/volto-form-block/components/Field.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/customizations/volto-form-block/components/Field.jsx -------------------------------------------------------------------------------- /src/customizations/volto-form-block/components/FormView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/customizations/volto-form-block/components/FormView.jsx -------------------------------------------------------------------------------- /src/customizations/volto/components/theme/Footer/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/customizations/volto/components/theme/Footer/Footer.jsx -------------------------------------------------------------------------------- /src/customizations/volto/components/theme/Header/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/customizations/volto/components/theme/Header/Header.jsx -------------------------------------------------------------------------------- /src/customizations/volto/components/theme/Login/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/customizations/volto/components/theme/Login/Login.jsx -------------------------------------------------------------------------------- /src/customizations/volto/components/theme/Search/Search.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/customizations/volto/components/theme/Search/Search.jsx -------------------------------------------------------------------------------- /src/customizations/volto/helpers/Html/Html.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/customizations/volto/helpers/Html/Html.jsx -------------------------------------------------------------------------------- /src/customizations/volto/reducers/navigation/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/customizations/volto/reducers/navigation/navigation.js -------------------------------------------------------------------------------- /src/helpers/IconWidget/IconWidgetHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/helpers/IconWidget/IconWidgetHelper.js -------------------------------------------------------------------------------- /src/helpers/ListingHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/helpers/ListingHelper.js -------------------------------------------------------------------------------- /src/helpers/ListingHelper_extend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/helpers/ListingHelper_extend.js -------------------------------------------------------------------------------- /src/helpers/amministrazioneTrasparenteHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/helpers/amministrazioneTrasparenteHelper.js -------------------------------------------------------------------------------- /src/helpers/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/helpers/config.js -------------------------------------------------------------------------------- /src/helpers/contentHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/helpers/contentHelper.js -------------------------------------------------------------------------------- /src/helpers/dates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/helpers/dates.js -------------------------------------------------------------------------------- /src/helpers/debounce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/helpers/debounce.js -------------------------------------------------------------------------------- /src/helpers/files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/helpers/files.js -------------------------------------------------------------------------------- /src/helpers/getItemsByPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/helpers/getItemsByPath.js -------------------------------------------------------------------------------- /src/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/helpers/index.js -------------------------------------------------------------------------------- /src/helpers/redraftHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/helpers/redraftHelper.js -------------------------------------------------------------------------------- /src/helpers/videoUrlHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/helpers/videoUrlHelper.js -------------------------------------------------------------------------------- /src/helpers/videoUrlHelper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/helpers/videoUrlHelper.test.js -------------------------------------------------------------------------------- /src/icons/archive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/archive.svg -------------------------------------------------------------------------------- /src/icons/bando.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/bando.svg -------------------------------------------------------------------------------- /src/icons/blocco-icone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/blocco-icone.svg -------------------------------------------------------------------------------- /src/icons/box-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/box-open.svg -------------------------------------------------------------------------------- /src/icons/building.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/building.svg -------------------------------------------------------------------------------- /src/icons/calendar-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/calendar-alt.svg -------------------------------------------------------------------------------- /src/icons/card-immagine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/card-immagine.svg -------------------------------------------------------------------------------- /src/icons/card-semplice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/card-semplice.svg -------------------------------------------------------------------------------- /src/icons/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/cog.svg -------------------------------------------------------------------------------- /src/icons/count-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/count-down.svg -------------------------------------------------------------------------------- /src/icons/file-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/file-alt.svg -------------------------------------------------------------------------------- /src/icons/file-download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/file-download.svg -------------------------------------------------------------------------------- /src/icons/file-invoice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/file-invoice.svg -------------------------------------------------------------------------------- /src/icons/file-odp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/file-odp.svg -------------------------------------------------------------------------------- /src/icons/file-ods.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/file-ods.svg -------------------------------------------------------------------------------- /src/icons/file-odt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/file-odt.svg -------------------------------------------------------------------------------- /src/icons/file-xml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/file-xml.svg -------------------------------------------------------------------------------- /src/icons/file-xsd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/file-xsd.svg -------------------------------------------------------------------------------- /src/icons/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/file.svg -------------------------------------------------------------------------------- /src/icons/folder-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/folder-open.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/LICENSE.txt -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/500px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/500px.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/adn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/adn.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/apper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/apper.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/apple.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/aws.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/aws.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/bity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/bity.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/btc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/btc.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/css3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/css3.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/dev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/dev.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/dhl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/dhl.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/digg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/digg.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/ebay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/ebay.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/edge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/edge.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/ello.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/ello.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/ember.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/ember.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/etsy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/etsy.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/fedex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/fedex.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/figma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/figma.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/fly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/fly.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/gg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/gg.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/git.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/git.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/glide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/glide.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/grav.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/grav.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/grunt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/grunt.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/gulp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/gulp.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/hips.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/hips.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/hive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/hive.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/hooli.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/hooli.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/houzz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/houzz.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/html5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/html5.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/ideal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/ideal.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/imdb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/imdb.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/java.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/jira.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/jira.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/joget.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/joget.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/js.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/js.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/less.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/less.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/line.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/linux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/linux.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/lyft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/lyft.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/mdb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/mdb.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/medrt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/medrt.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/mix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/mix.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/mixer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/mixer.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/modx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/modx.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/neos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/neos.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/node.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/node.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/npm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/npm.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/ns8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/ns8.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/opera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/opera.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/orcid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/orcid.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/osi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/osi.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/page4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/page4.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/php.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/php.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/qq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/qq.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/quora.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/quora.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/react.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/rebel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/rebel.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/rev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/rev.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/rust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/rust.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/sass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/sass.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/sith.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/sith.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/skype.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/skype.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/slack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/slack.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/steam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/steam.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/suse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/suse.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/swift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/swift.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/typo3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/typo3.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/uber.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/uber.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/uikit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/uikit.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/unity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/unity.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/ups.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/ups.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/usb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/usb.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/usps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/usps.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/viber.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/viber.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/vimeo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/vimeo.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/vine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/vine.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/vk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/vk.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/vnv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/vnv.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/vuejs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/vuejs.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/waze.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/waze.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/weibo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/weibo.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/whmcs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/whmcs.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/wix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/wix.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/wodu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/wodu.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/xbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/xbox.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/xing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/xing.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/yahoo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/yahoo.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/yarn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/yarn.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/yelp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/yelp.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/yoast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/yoast.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/brands/zhihu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/brands/zhihu.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/regular/bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/regular/bell.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/regular/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/regular/copy.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/regular/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/regular/edit.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/regular/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/regular/eye.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/regular/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/regular/file.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/regular/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/regular/flag.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/regular/gem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/regular/gem.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/regular/grin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/regular/grin.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/regular/hdd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/regular/hdd.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/regular/kiss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/regular/kiss.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/regular/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/regular/map.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/regular/meh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/regular/meh.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/regular/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/regular/moon.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/regular/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/regular/save.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/regular/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/regular/star.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/regular/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/regular/sun.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/regular/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/regular/user.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/ad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/ad.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/adjust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/adjust.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/anchor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/anchor.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/angry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/angry.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/ankh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/ankh.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/at.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/at.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/atlas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/atlas.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/atom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/atom.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/award.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/award.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/baby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/baby.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/bacon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/bacon.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/bahai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/bahai.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/ban.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/ban.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/bars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/bars.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/bath.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/bath.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/bed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/bed.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/beer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/beer.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/bell.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/bible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/bible.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/biking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/biking.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/blind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/blind.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/blog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/blog.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/bold.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/bolt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/bolt.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/bomb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/bomb.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/bone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/bone.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/bong.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/bong.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/book.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/box.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/boxes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/boxes.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/brain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/brain.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/broom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/broom.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/brush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/brush.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/bug.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/burn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/burn.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/bus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/bus.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/camera.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/car.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/car.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/carrot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/carrot.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/cat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/cat.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/chair.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/chair.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/check.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/cheese.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/cheese.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/chess.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/chess.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/child.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/child.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/church.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/church.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/circle.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/city.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/city.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/clock.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/clone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/clone.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/cloud.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/code.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/coffee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/coffee.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/cog.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/cogs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/cogs.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/coins.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/coins.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/cookie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/cookie.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/copy.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/couch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/couch.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/crop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/crop.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/cross.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/crow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/crow.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/crown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/crown.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/crutch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/crutch.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/cube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/cube.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/cubes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/cubes.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/cut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/cut.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/deaf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/deaf.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/dice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/dice.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/divide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/divide.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/dizzy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/dizzy.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/dna.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/dna.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/dog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/dog.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/dolly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/dolly.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/donate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/donate.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/dove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/dove.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/drum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/drum.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/edit.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/egg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/egg.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/eye.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/fan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/fan.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/fax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/fax.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/file.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/fill.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/film.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/film.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/fire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/fire.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/fish.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/fish.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/flag.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/font.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/font.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/frog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/frog.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/gem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/gem.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/gift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/gift.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/grin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/grin.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/hdd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/hdd.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/home.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/info.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/jedi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/jedi.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/key.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/kiss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/kiss.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/leaf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/leaf.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/link.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/list.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/lock.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/male.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/male.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/map.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/mars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/mars.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/mask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/mask.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/meh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/meh.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/moon.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/om.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/om.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/paw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/paw.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/pen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/pen.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/play.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/plug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/plug.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/plus.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/poll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/poll.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/poo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/poo.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/poop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/poop.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/pray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/pray.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/redo.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/ring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/ring.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/road.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/road.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/rss.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/save.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/ship.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/ship.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/sign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/sign.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/sink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/sink.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/smog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/smog.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/sms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/sms.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/soap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/soap.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/sort.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/spa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/spa.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/star.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/stop.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/sun.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/sync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/sync.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/tag.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/tags.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/tags.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/tape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/tape.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/taxi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/taxi.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/th.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/th.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/tint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/tint.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/tram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/tram.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/tree.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/tty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/tty.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/tv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/tv.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/undo.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/user.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/vest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/vest.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/vial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/vial.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/wifi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/wifi.svg -------------------------------------------------------------------------------- /src/icons/fontawesome-free-5.15.4-web/svgs/solid/wind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/fontawesome-free-5.15.4-web/svgs/solid/wind.svg -------------------------------------------------------------------------------- /src/icons/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/image.svg -------------------------------------------------------------------------------- /src/icons/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/link.svg -------------------------------------------------------------------------------- /src/icons/map-marked-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/map-marked-alt.svg -------------------------------------------------------------------------------- /src/icons/newspaper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/newspaper.svg -------------------------------------------------------------------------------- /src/icons/numeri.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/numeri.svg -------------------------------------------------------------------------------- /src/icons/question-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/question-solid.svg -------------------------------------------------------------------------------- /src/icons/sitemap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/sitemap.svg -------------------------------------------------------------------------------- /src/icons/twitter-brands.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/twitter-brands.svg -------------------------------------------------------------------------------- /src/icons/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/icons/user.svg -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/index.js -------------------------------------------------------------------------------- /src/reducers/amministrazioneTrasparenteTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/reducers/amministrazioneTrasparenteTree.js -------------------------------------------------------------------------------- /src/reducers/calendarDaySearchReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/reducers/calendarDaySearchReducer.js -------------------------------------------------------------------------------- /src/reducers/calendarSearchReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/reducers/calendarSearchReducer.js -------------------------------------------------------------------------------- /src/reducers/dettagliProcedimento.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/reducers/dettagliProcedimento.js -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/reducers/index.js -------------------------------------------------------------------------------- /src/reducers/originalQueryReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/reducers/originalQueryReducer.js -------------------------------------------------------------------------------- /src/reducers/searchBandiFiltersReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/reducers/searchBandiFiltersReducer.js -------------------------------------------------------------------------------- /src/reducers/searchFiltersReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/reducers/searchFiltersReducer.js -------------------------------------------------------------------------------- /src/reducers/searchResultsReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/reducers/searchResultsReducer.js -------------------------------------------------------------------------------- /src/reducers/twitterPosts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/reducers/twitterPosts.js -------------------------------------------------------------------------------- /src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/routes.js -------------------------------------------------------------------------------- /src/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/src/theme.js -------------------------------------------------------------------------------- /test-setup-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/test-setup-config.js -------------------------------------------------------------------------------- /theme/ItaliaTheme/Addons/customerSatisfaction.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Addons/customerSatisfaction.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Addons/volto-gdpr-privacy.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Addons/volto-gdpr-privacy.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_HTML.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_HTML.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_accordion.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_alert.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_argumentsInEvidence.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_argumentsInEvidence.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_bandiInEvidenceTemplate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_bandiInEvidenceTemplate.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_bandiSearch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_bandiSearch.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_break.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_break.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_calendar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_calendar.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_cardWithImageAndInEvidence.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_cardWithImageAndInEvidence.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_cardWithImageTextBlock.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_cardWithImageTextBlock.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_completeBlockLinkstemplate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_completeBlockLinkstemplate.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_contacts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_contacts.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_contentInEvidenceTemplate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_contentInEvidenceTemplate.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_countdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_countdown.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_ctaBlock.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_ctaBlock.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_eventSearch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_eventSearch.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_form.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_gridGalleryTemplate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_gridGalleryTemplate.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_hero.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_hero.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_highlitedContent.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_highlitedContent.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_iconBlocks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_iconBlocks.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_imageBlock.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_imageBlock.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_imageCardTextBlock.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_imageCardTextBlock.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_inevidencetemplate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_inevidencetemplate.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_listing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_listing.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_mapTemplate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_mapTemplate.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_numbers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_numbers.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_photogallerytemplate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_photogallerytemplate.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_ribbonCardTemplate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_ribbonCardTemplate.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_rssBlock.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_rssBlock.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_searchSections.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_searchSections.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_simpleCardTemplate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_simpleCardTemplate.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_simpleCardTextBlock.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_simpleCardTextBlock.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_simpleListTemplate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_simpleListTemplate.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_skeleton.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_skeleton.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_sliderTemplate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_sliderTemplate.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_smallblockLinkstemplate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_smallblockLinkstemplate.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_squaresImageTemplate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_squaresImageTemplate.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_subblocks-edit.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_subblocks-edit.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_tableOfContents.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_tableOfContents.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_twitterPosts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_twitterPosts.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_video.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_video.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/_videoGallery.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/_videoGallery.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Blocks/common/_searchBlockFilters.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Blocks/common/_searchBlockFilters.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Components/_galleryPreview.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Components/_galleryPreview.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Components/_locationsMap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Components/_locationsMap.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Components/_logo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Components/_logo.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Components/_megamenu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Components/_megamenu.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Components/_metadata.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Components/_metadata.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Components/_mobileMenu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Components/_mobileMenu.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Components/_pageHeader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Components/_pageHeader.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Components/_pageLoader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Components/_pageLoader.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Components/_parentSiteMenu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Components/_parentSiteMenu.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Components/_relatedItemInEvidence.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Components/_relatedItemInEvidence.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Components/_scrollToTop.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Components/_scrollToTop.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Components/_sharing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Components/_sharing.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Components/_subsiteFooter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Components/_subsiteFooter.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Components/_subsiteHeader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Components/_subsiteHeader.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Components/_tertiaryMenu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Components/_tertiaryMenu.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Components/_unauthorized.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Components/_unauthorized.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Components/_venue.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Components/_venue.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Print/_all_pages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Print/_all_pages.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Print/_bandi.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Print/_bandi.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Print/_blocks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Print/_blocks.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Print/_event.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Print/_event.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Print/_news_items.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Print/_news_items.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Print/_persona.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Print/_persona.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Print/_servizio.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Print/_servizio.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Subsites/ItaliaTheme/Views/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Subsites/ItaliaTheme/Views/_common.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Subsites/ItaliaTheme/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Subsites/ItaliaTheme/_common.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Subsites/_all_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Subsites/_all_variables.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Subsites/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Subsites/_common.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Subsites/_homepage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Subsites/_homepage.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Subsites/_mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Subsites/_mixin.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Subsites/light-blue.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Subsites/light-blue.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Subsites/light-pink.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Subsites/light-pink.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Subsites/light-teal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Subsites/light-teal.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Subsites/light-yellow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Subsites/light-yellow.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Subsites/magenta.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Subsites/magenta.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Subsites/teal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Subsites/teal.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Subsites/templates/_light-pink.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Subsites/templates/_light-pink.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Subsites/templates/_light-teal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Subsites/templates/_light-teal.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Subsites/templates/_light-yellow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Subsites/templates/_light-yellow.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Subsites/templates/_white.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Subsites/templates/_white.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Subsites/white.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Subsites/white.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Subsites/yellow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Subsites/yellow.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Views/_bando.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Views/_bando.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Views/_cartellaModulistica.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Views/_cartellaModulistica.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Views/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Views/_common.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Views/_embeddedVideo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Views/_embeddedVideo.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Views/_evento.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Views/_evento.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Views/_faqFolder.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Views/_faqFolder.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Views/_folder.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Views/_folder.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Views/_homepage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Views/_homepage.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Views/_modules.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Views/_modules.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Views/_paginaArgomentoView.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Views/_paginaArgomentoView.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Views/_slider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Views/_slider.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Views/_sponsors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Views/_sponsors.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Views/_trasparenzaView.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Views/_trasparenzaView.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Views/_uo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Views/_uo.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Widgets/_blocksWidget.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Widgets/_blocksWidget.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Widgets/_iconWidget.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Widgets/_iconWidget.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Widgets/_reactSelect.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Widgets/_reactSelect.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/Widgets/_subsiteSocialLinks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/Widgets/_subsiteSocialLinks.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/_ar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/_ar.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/_common.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/_home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/_home.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/_main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/_main.scss -------------------------------------------------------------------------------- /theme/ItaliaTheme/_sitemap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/ItaliaTheme/_sitemap.scss -------------------------------------------------------------------------------- /theme/_cms-ui.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/_cms-ui.scss -------------------------------------------------------------------------------- /theme/_site-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/_site-variables.scss -------------------------------------------------------------------------------- /theme/bootstrap-override/_bootstrap-italia-site.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/bootstrap-override/_bootstrap-italia-site.scss -------------------------------------------------------------------------------- /theme/bootstrap-override/bootstrap-italia/_anchor.scss: -------------------------------------------------------------------------------- 1 | .anchor-offset:before { 2 | z-index: 0; 3 | } 4 | -------------------------------------------------------------------------------- /theme/bootstrap-override/bootstrap-italia/_borders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/bootstrap-override/bootstrap-italia/_borders.scss -------------------------------------------------------------------------------- /theme/bootstrap-override/bootstrap-italia/_callout.scss: -------------------------------------------------------------------------------- 1 | .callout { 2 | max-width: none; 3 | } 4 | -------------------------------------------------------------------------------- /theme/bootstrap-override/bootstrap-italia/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/bootstrap-override/bootstrap-italia/_card.scss -------------------------------------------------------------------------------- /theme/bootstrap-override/bootstrap-italia/_chips.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/bootstrap-override/bootstrap-italia/_chips.scss -------------------------------------------------------------------------------- /theme/bootstrap-override/bootstrap-italia/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/bootstrap-override/bootstrap-italia/_footer.scss -------------------------------------------------------------------------------- /theme/bootstrap-override/bootstrap-italia/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/bootstrap-override/bootstrap-italia/_form.scss -------------------------------------------------------------------------------- /theme/bootstrap-override/bootstrap-italia/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/bootstrap-override/bootstrap-italia/_grid.scss -------------------------------------------------------------------------------- /theme/bootstrap-override/bootstrap-italia/_megamenu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/bootstrap-override/bootstrap-italia/_megamenu.scss -------------------------------------------------------------------------------- /theme/bootstrap-override/bootstrap-italia/_skiplinks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/bootstrap-override/bootstrap-italia/_skiplinks.scss -------------------------------------------------------------------------------- /theme/bootstrap-override/bootstrap-italia/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/bootstrap-override/bootstrap-italia/_type.scss -------------------------------------------------------------------------------- /theme/bootstrap-override/bootstrap/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/bootstrap-override/bootstrap/_print.scss -------------------------------------------------------------------------------- /theme/bootstrap-override/bootstrap/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/bootstrap-override/bootstrap/_reboot.scss -------------------------------------------------------------------------------- /theme/extras/_add_content_menu.scss: -------------------------------------------------------------------------------- 1 | div.pastanaga-menu-list { 2 | max-height: 80vh; 3 | overflow-y: scroll; 4 | } 5 | -------------------------------------------------------------------------------- /theme/extras/_blocks-chooser.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/extras/_blocks-chooser.scss -------------------------------------------------------------------------------- /theme/extras/_blocks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/extras/_blocks.scss -------------------------------------------------------------------------------- /theme/extras/_checkbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/extras/_checkbox.scss -------------------------------------------------------------------------------- /theme/extras/_file-widget.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/extras/_file-widget.scss -------------------------------------------------------------------------------- /theme/extras/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/extras/_forms.scss -------------------------------------------------------------------------------- /theme/extras/_modals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/extras/_modals.scss -------------------------------------------------------------------------------- /theme/extras/_search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/extras/_search.scss -------------------------------------------------------------------------------- /theme/extras/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/extras/_sidebar.scss -------------------------------------------------------------------------------- /theme/extras/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/extras/_tables.scss -------------------------------------------------------------------------------- /theme/extras/_toolbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/extras/_toolbar.scss -------------------------------------------------------------------------------- /theme/extras/_video.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/extras/_video.scss -------------------------------------------------------------------------------- /theme/site.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/site.scss -------------------------------------------------------------------------------- /theme/theme.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/theme/theme.config -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedTurtle/design-volto-theme/HEAD/yarn.lock --------------------------------------------------------------------------------