├── .vscode
└── launch.json
├── LICENSE
├── README.md
├── docs
├── .gitignore
├── _config.yml
├── _data
│ └── navigation.yml
├── assets
│ └── css
│ │ └── app.scss
├── examples
│ └── helix-basic-company.md
├── index.md
└── install.md
├── examples
├── helix-basic-aspnetcore
│ ├── .config
│ │ └── dotnet-tools.json
│ ├── .dockerignore
│ ├── .env
│ ├── .gitignore
│ ├── .sitecore
│ │ └── schemas
│ │ │ ├── ModuleFile.schema.json
│ │ │ ├── RootConfigurationFile.schema.json
│ │ │ └── UserConfiguration.schema.json
│ ├── .vscode
│ │ └── settings.json
│ ├── BasicCompany.sln
│ ├── Directory.Build.props
│ ├── Directory.Build.targets
│ ├── Dockerfile
│ ├── Packages.props
│ ├── README.md
│ ├── docker-compose.override.yml
│ ├── docker-compose.yml
│ ├── docker
│ │ ├── .gitignore
│ │ ├── README.md
│ │ ├── build
│ │ │ ├── README.md
│ │ │ ├── cd
│ │ │ │ └── Dockerfile
│ │ │ ├── cm
│ │ │ │ └── Dockerfile
│ │ │ ├── dotnetsdk
│ │ │ │ └── Dockerfile
│ │ │ ├── id
│ │ │ │ └── Dockerfile
│ │ │ ├── mssql
│ │ │ │ └── Dockerfile
│ │ │ ├── redis
│ │ │ │ └── Dockerfile
│ │ │ ├── rendering
│ │ │ │ └── Dockerfile
│ │ │ └── solr-init
│ │ │ │ └── Dockerfile
│ │ ├── clean.ps1
│ │ ├── data
│ │ │ ├── README.md
│ │ │ ├── cd
│ │ │ │ └── .gitkeep
│ │ │ ├── cm
│ │ │ │ └── .gitkeep
│ │ │ ├── mssql
│ │ │ │ └── .gitkeep
│ │ │ └── solr
│ │ │ │ └── .gitkeep
│ │ ├── deploy
│ │ │ ├── README.md
│ │ │ └── platform
│ │ │ │ └── .gitkeep
│ │ └── traefik
│ │ │ ├── README.md
│ │ │ ├── certs
│ │ │ └── .gitkeep
│ │ │ └── config
│ │ │ └── dynamic
│ │ │ └── certs_config.yaml
│ ├── global.json
│ ├── init.ps1
│ ├── nuget.config
│ ├── sitecore.json
│ ├── src
│ │ ├── Environment
│ │ │ └── platform
│ │ │ │ ├── App_Config
│ │ │ │ └── Include
│ │ │ │ │ ├── Sitecore.LoadBalancing.config
│ │ │ │ │ └── Sitecore.MediaDefaults.config
│ │ │ │ ├── BasicCompany.Environment.Platform.csproj
│ │ │ │ ├── BasicCompany.Environment.Platform.wpp.targets
│ │ │ │ ├── Directory.Build.props
│ │ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ └── PublishProfiles
│ │ │ │ │ └── Local.pubxml
│ │ │ │ ├── Web.Debug.config
│ │ │ │ ├── Web.Release.config
│ │ │ │ └── Web.config
│ │ ├── Feature
│ │ │ ├── BasicContent
│ │ │ │ ├── BasicContent.module.json
│ │ │ │ ├── README.md
│ │ │ │ ├── items
│ │ │ │ │ ├── buttons
│ │ │ │ │ │ ├── BasicContent.yml
│ │ │ │ │ │ └── BasicContent
│ │ │ │ │ │ │ ├── Hero Banner.yml
│ │ │ │ │ │ │ └── Promo Card.yml
│ │ │ │ │ ├── renderings
│ │ │ │ │ │ ├── BasicContent.yml
│ │ │ │ │ │ └── BasicContent
│ │ │ │ │ │ │ ├── Accordion Item.yml
│ │ │ │ │ │ │ ├── Accordion.yml
│ │ │ │ │ │ │ ├── Hero Banner.yml
│ │ │ │ │ │ │ ├── Promo Card.yml
│ │ │ │ │ │ │ ├── Promo Container.yml
│ │ │ │ │ │ │ └── Section Header.yml
│ │ │ │ │ └── templates
│ │ │ │ │ │ ├── BasicContent.yml
│ │ │ │ │ │ └── BasicContent
│ │ │ │ │ │ ├── Accordion Item Folder.yml
│ │ │ │ │ │ ├── Accordion Item Folder
│ │ │ │ │ │ └── __Standard Values.yml
│ │ │ │ │ │ ├── Accordion Item.yml
│ │ │ │ │ │ ├── Accordion Item
│ │ │ │ │ │ ├── Accordion Item.yml
│ │ │ │ │ │ └── Accordion Item
│ │ │ │ │ │ │ ├── Content.yml
│ │ │ │ │ │ │ └── Title.yml
│ │ │ │ │ │ ├── Hero Banner Folder.yml
│ │ │ │ │ │ ├── Hero Banner Folder
│ │ │ │ │ │ └── __Standard Values.yml
│ │ │ │ │ │ ├── Hero Banner.yml
│ │ │ │ │ │ ├── Hero Banner
│ │ │ │ │ │ ├── Banner.yml
│ │ │ │ │ │ ├── Banner
│ │ │ │ │ │ │ ├── Image.yml
│ │ │ │ │ │ │ ├── Subtitle.yml
│ │ │ │ │ │ │ └── Title.yml
│ │ │ │ │ │ └── __Standard Values.yml
│ │ │ │ │ │ ├── Promo Card Folder.yml
│ │ │ │ │ │ ├── Promo Card Folder
│ │ │ │ │ │ └── __Standard Values.yml
│ │ │ │ │ │ ├── Promo Card.yml
│ │ │ │ │ │ ├── Promo Card
│ │ │ │ │ │ ├── Promo Card.yml
│ │ │ │ │ │ ├── Promo Card
│ │ │ │ │ │ │ ├── Headline.yml
│ │ │ │ │ │ │ ├── Image.yml
│ │ │ │ │ │ │ ├── Link.yml
│ │ │ │ │ │ │ └── Text.yml
│ │ │ │ │ │ └── __Standard Values.yml
│ │ │ │ │ │ ├── Section Header Folder.yml
│ │ │ │ │ │ ├── Section Header Folder
│ │ │ │ │ │ └── __Standard Values.yml
│ │ │ │ │ │ ├── Section Header.yml
│ │ │ │ │ │ └── Section Header
│ │ │ │ │ │ ├── Header.yml
│ │ │ │ │ │ ├── Header
│ │ │ │ │ │ └── Text.yml
│ │ │ │ │ │ └── __Standard Values.yml
│ │ │ │ └── rendering
│ │ │ │ │ ├── BasicCompany.Feature.BasicContent.Rendering.csproj
│ │ │ │ │ ├── Extensions
│ │ │ │ │ └── RenderingEngineOptionsExtensions.cs
│ │ │ │ │ ├── Models
│ │ │ │ │ ├── AccordionItem.cs
│ │ │ │ │ ├── HeroBanner.cs
│ │ │ │ │ ├── PromoCard.cs
│ │ │ │ │ └── SectionHeader.cs
│ │ │ │ │ └── Views
│ │ │ │ │ ├── Shared
│ │ │ │ │ ├── Accordion.cshtml
│ │ │ │ │ ├── Components
│ │ │ │ │ │ └── SitecoreComponent
│ │ │ │ │ │ │ ├── AccordionItem.cshtml
│ │ │ │ │ │ │ ├── HeroBanner.cshtml
│ │ │ │ │ │ │ ├── PromoCard.cshtml
│ │ │ │ │ │ │ └── SectionHeader.cshtml
│ │ │ │ │ └── PromoContainer.cshtml
│ │ │ │ │ └── _ViewImports.cshtml
│ │ │ ├── Navigation
│ │ │ │ ├── Navigation.module.json
│ │ │ │ ├── README.md
│ │ │ │ ├── items
│ │ │ │ │ ├── contents-resolvers
│ │ │ │ │ │ ├── Navigation.yml
│ │ │ │ │ │ └── Navigation
│ │ │ │ │ │ │ ├── Footer.yml
│ │ │ │ │ │ │ └── Header.yml
│ │ │ │ │ ├── renderings
│ │ │ │ │ │ ├── Navigation.yml
│ │ │ │ │ │ └── Navigation
│ │ │ │ │ │ │ ├── Footer.yml
│ │ │ │ │ │ │ └── Header.yml
│ │ │ │ │ └── templates
│ │ │ │ │ │ ├── Navigation.yml
│ │ │ │ │ │ └── Navigation
│ │ │ │ │ │ ├── _NavigationItem.yml
│ │ │ │ │ │ ├── _NavigationItem
│ │ │ │ │ │ ├── Navigation.yml
│ │ │ │ │ │ ├── Navigation
│ │ │ │ │ │ │ └── NavigationTitle.yml
│ │ │ │ │ │ └── __Standard Values.yml
│ │ │ │ │ │ ├── _NavigationRoot.yml
│ │ │ │ │ │ └── _NavigationRoot
│ │ │ │ │ │ ├── Header and Footer.yml
│ │ │ │ │ │ └── Header and Footer
│ │ │ │ │ │ ├── FooterCopyright.yml
│ │ │ │ │ │ └── HeaderLogo.yml
│ │ │ │ ├── platform
│ │ │ │ │ ├── App_Config
│ │ │ │ │ │ └── Include
│ │ │ │ │ │ │ └── Feature
│ │ │ │ │ │ │ └── Feature.Navigation.config
│ │ │ │ │ ├── BasicCompany.Feature.Navigation.Platform.csproj
│ │ │ │ │ ├── LayoutService
│ │ │ │ │ │ ├── FooterContentsResolver.cs
│ │ │ │ │ │ └── HeaderContentsResolver.cs
│ │ │ │ │ ├── Models
│ │ │ │ │ │ ├── Header.cs
│ │ │ │ │ │ └── NavigationItem.cs
│ │ │ │ │ ├── Properties
│ │ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ │ ├── Services
│ │ │ │ │ │ ├── HeaderBuilder.cs
│ │ │ │ │ │ ├── IHeaderBuilder.cs
│ │ │ │ │ │ ├── INavigationRootResolver.cs
│ │ │ │ │ │ └── NavigationRootResolver.cs
│ │ │ │ │ ├── ServicesConfigurator.cs
│ │ │ │ │ ├── Templates.cs
│ │ │ │ │ ├── Web.Debug.config
│ │ │ │ │ ├── Web.Release.config
│ │ │ │ │ └── Web.config
│ │ │ │ └── rendering
│ │ │ │ │ ├── BasicCompany.Feature.Navigation.Rendering.csproj
│ │ │ │ │ ├── Extensions
│ │ │ │ │ └── RenderingEngineOptionsExtensions.cs
│ │ │ │ │ ├── Models
│ │ │ │ │ ├── Footer.cs
│ │ │ │ │ ├── Header.cs
│ │ │ │ │ ├── LogoLink.cs
│ │ │ │ │ └── NavigationItem.cs
│ │ │ │ │ └── Views
│ │ │ │ │ ├── Shared
│ │ │ │ │ └── Components
│ │ │ │ │ │ └── SitecoreComponent
│ │ │ │ │ │ ├── Footer.cshtml
│ │ │ │ │ │ └── Header.cshtml
│ │ │ │ │ └── _ViewImports.cshtml
│ │ │ ├── Products
│ │ │ │ ├── Products.module.json
│ │ │ │ ├── README.md
│ │ │ │ ├── items
│ │ │ │ │ ├── contents-resolvers
│ │ │ │ │ │ ├── Products.yml
│ │ │ │ │ │ └── Products
│ │ │ │ │ │ │ └── Product List.yml
│ │ │ │ │ ├── renderings
│ │ │ │ │ │ ├── Products.yml
│ │ │ │ │ │ └── Products
│ │ │ │ │ │ │ ├── Product Detail Header.yml
│ │ │ │ │ │ │ ├── Product Detail.yml
│ │ │ │ │ │ │ ├── Product List.yml
│ │ │ │ │ │ │ └── Related Products.yml
│ │ │ │ │ └── templates
│ │ │ │ │ │ ├── Products.yml
│ │ │ │ │ │ └── Products
│ │ │ │ │ │ ├── _Product.yml
│ │ │ │ │ │ └── _Product
│ │ │ │ │ │ ├── Product.yml
│ │ │ │ │ │ ├── Product
│ │ │ │ │ │ ├── Features.yml
│ │ │ │ │ │ ├── Image.yml
│ │ │ │ │ │ ├── Price.yml
│ │ │ │ │ │ ├── RelatedProducts.yml
│ │ │ │ │ │ ├── ShortDescription.yml
│ │ │ │ │ │ └── Title.yml
│ │ │ │ │ │ └── __Standard Values.yml
│ │ │ │ ├── platform
│ │ │ │ │ ├── App_Config
│ │ │ │ │ │ └── Include
│ │ │ │ │ │ │ └── Feature
│ │ │ │ │ │ │ ├── Feature.Products.ContentSearch.config
│ │ │ │ │ │ │ └── Feature.Products.config
│ │ │ │ │ ├── BasicCompany.Feature.Products.Platform.csproj
│ │ │ │ │ ├── LayoutService
│ │ │ │ │ │ └── ProductListContentsResolver.cs
│ │ │ │ │ ├── Properties
│ │ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ │ ├── Services
│ │ │ │ │ │ ├── IProductRepository.cs
│ │ │ │ │ │ ├── ProductRepository.cs
│ │ │ │ │ │ └── ProductSearchQuery.cs
│ │ │ │ │ ├── ServicesConfigurator.cs
│ │ │ │ │ ├── Templates.cs
│ │ │ │ │ ├── Web.Debug.config
│ │ │ │ │ ├── Web.Release.config
│ │ │ │ │ └── Web.config
│ │ │ │ └── rendering
│ │ │ │ │ ├── BasicCompany.Feature.Products.Rendering.csproj
│ │ │ │ │ ├── Extensions
│ │ │ │ │ └── RenderingEngineOptionsExtensions.cs
│ │ │ │ │ ├── Localization
│ │ │ │ │ └── ProductsResource.cs
│ │ │ │ │ ├── Models
│ │ │ │ │ ├── ListProduct.cs
│ │ │ │ │ ├── ProductDetail.cs
│ │ │ │ │ ├── ProductDetailHeader.cs
│ │ │ │ │ ├── ProductList.cs
│ │ │ │ │ └── RelatedProductsList.cs
│ │ │ │ │ ├── Resources
│ │ │ │ │ └── Localization.ProductsResource.en.resx
│ │ │ │ │ └── Views
│ │ │ │ │ ├── Shared
│ │ │ │ │ ├── Components
│ │ │ │ │ │ └── SitecoreComponent
│ │ │ │ │ │ │ ├── ProductDetail.cshtml
│ │ │ │ │ │ │ ├── ProductDetailHeader.cshtml
│ │ │ │ │ │ │ ├── ProductList.cshtml
│ │ │ │ │ │ │ └── RelatedProducts.cshtml
│ │ │ │ │ └── _ListProduct.cshtml
│ │ │ │ │ └── _ViewImports.cshtml
│ │ │ └── Services
│ │ │ │ ├── README.md
│ │ │ │ ├── Services.module.json
│ │ │ │ ├── items
│ │ │ │ ├── buttons
│ │ │ │ │ ├── Services.yml
│ │ │ │ │ └── Services
│ │ │ │ │ │ └── Testimonial.yml
│ │ │ │ ├── renderings
│ │ │ │ │ ├── Services.yml
│ │ │ │ │ └── Services
│ │ │ │ │ │ ├── Testimonial Container.yml
│ │ │ │ │ │ └── Testimonial.yml
│ │ │ │ └── templates
│ │ │ │ │ ├── Services.yml
│ │ │ │ │ └── Services
│ │ │ │ │ ├── Testimonial Folder.yml
│ │ │ │ │ ├── Testimonial Folder
│ │ │ │ │ └── __Standard Values.yml
│ │ │ │ │ ├── Testimonial.yml
│ │ │ │ │ └── Testimonial
│ │ │ │ │ ├── Testimonial.yml
│ │ │ │ │ └── Testimonial
│ │ │ │ │ ├── Image.yml
│ │ │ │ │ ├── Quote.yml
│ │ │ │ │ └── Title.yml
│ │ │ │ └── rendering
│ │ │ │ ├── BasicCompany.Feature.Services.Rendering.csproj
│ │ │ │ ├── Extensions
│ │ │ │ └── RenderingEngineOptionsExtensions.cs
│ │ │ │ ├── Models
│ │ │ │ └── Testimonial.cs
│ │ │ │ └── Views
│ │ │ │ ├── Shared
│ │ │ │ ├── Components
│ │ │ │ │ └── SitecoreComponent
│ │ │ │ │ │ └── Testimonial.cshtml
│ │ │ │ └── TestimonialContainer.cshtml
│ │ │ │ └── _ViewImports.cshtml
│ │ ├── Foundation
│ │ │ └── Multisite
│ │ │ │ ├── Multisite.module.json
│ │ │ │ ├── README.md
│ │ │ │ └── items
│ │ │ │ └── templates
│ │ │ │ ├── Multisite.yml
│ │ │ │ └── Multisite
│ │ │ │ └── Site.yml
│ │ └── Project
│ │ │ ├── BasicCompany
│ │ │ ├── BasicCompany.module.json
│ │ │ ├── README.md
│ │ │ ├── items
│ │ │ │ ├── api-key
│ │ │ │ │ └── basic-company.yml
│ │ │ │ ├── branches
│ │ │ │ │ ├── BasicCompany.yml
│ │ │ │ │ └── BasicCompany
│ │ │ │ │ │ ├── Home Page.yml
│ │ │ │ │ │ ├── Home Page
│ │ │ │ │ │ ├── _name.yml
│ │ │ │ │ │ └── _name
│ │ │ │ │ │ │ └── Page Components.yml
│ │ │ │ │ │ ├── Product List Page.yml
│ │ │ │ │ │ ├── Product List Page
│ │ │ │ │ │ ├── _name.yml
│ │ │ │ │ │ └── _name
│ │ │ │ │ │ │ └── Page Components.yml
│ │ │ │ │ │ ├── Services Page.yml
│ │ │ │ │ │ └── Services Page
│ │ │ │ │ │ ├── _name.yml
│ │ │ │ │ │ └── _name
│ │ │ │ │ │ └── Page Components.yml
│ │ │ │ ├── layouts
│ │ │ │ │ ├── BasicCompany.yml
│ │ │ │ │ └── BasicCompany
│ │ │ │ │ │ └── Default.yml
│ │ │ │ ├── placeholders
│ │ │ │ │ ├── BasicCompany.yml
│ │ │ │ │ └── BasicCompany
│ │ │ │ │ │ ├── Accordion.yml
│ │ │ │ │ │ ├── Footer.yml
│ │ │ │ │ │ ├── Header.yml
│ │ │ │ │ │ ├── Main Layout.yml
│ │ │ │ │ │ ├── Product Detail Page.yml
│ │ │ │ │ │ ├── Product List Page.yml
│ │ │ │ │ │ ├── Promo Container.yml
│ │ │ │ │ │ ├── Services Page.yml
│ │ │ │ │ │ └── Testimonial Container.yml
│ │ │ │ ├── site-root-rule
│ │ │ │ │ └── BasicCompany Site Root.yml
│ │ │ │ └── templates
│ │ │ │ │ ├── BasicCompany.yml
│ │ │ │ │ └── BasicCompany
│ │ │ │ │ ├── Folder Types.yml
│ │ │ │ │ ├── Folder Types
│ │ │ │ │ ├── Page Component Folder.yml
│ │ │ │ │ └── Page Component Folder
│ │ │ │ │ │ └── __Standard Values.yml
│ │ │ │ │ ├── Page Types.yml
│ │ │ │ │ └── Page Types
│ │ │ │ │ ├── Home Page.yml
│ │ │ │ │ ├── Home Page
│ │ │ │ │ └── __Standard Values.yml
│ │ │ │ │ ├── Page.yml
│ │ │ │ │ ├── Page
│ │ │ │ │ └── __Standard Values.yml
│ │ │ │ │ ├── Product Detail Page.yml
│ │ │ │ │ ├── Product Detail Page
│ │ │ │ │ └── __Standard Values.yml
│ │ │ │ │ ├── Product List Page.yml
│ │ │ │ │ ├── Product List Page
│ │ │ │ │ └── __Standard Values.yml
│ │ │ │ │ ├── Services Page.yml
│ │ │ │ │ └── Services Page
│ │ │ │ │ └── __Standard Values.yml
│ │ │ ├── platform
│ │ │ │ ├── App_Config
│ │ │ │ │ └── Include
│ │ │ │ │ │ └── Project
│ │ │ │ │ │ └── Project.BasicCompany.config
│ │ │ │ ├── BasicCompany.Project.BasicCompany.Platform.csproj
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── css
│ │ │ │ │ └── basic-company.css
│ │ │ │ ├── js
│ │ │ │ │ └── basic-company.js
│ │ │ │ ├── web.Debug.config
│ │ │ │ ├── web.Release.config
│ │ │ │ └── web.config
│ │ │ └── rendering
│ │ │ │ ├── BasicCompany.Project.BasicCompany.Rendering.csproj
│ │ │ │ ├── Configuration
│ │ │ │ └── SitecoreOptions.cs
│ │ │ │ ├── Controllers
│ │ │ │ └── DefaultController.cs
│ │ │ │ ├── Models
│ │ │ │ └── ErrorViewModel.cs
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ └── launchSettings.json
│ │ │ │ ├── Startup.cs
│ │ │ │ ├── Views
│ │ │ │ ├── Default
│ │ │ │ │ └── Index.cshtml
│ │ │ │ ├── Shared
│ │ │ │ │ ├── Error.cshtml
│ │ │ │ │ ├── NotFound.cshtml
│ │ │ │ │ ├── _ComponentNotFound.cshtml
│ │ │ │ │ └── _Layout.cshtml
│ │ │ │ ├── _ViewImports.cshtml
│ │ │ │ └── _ViewStart.cshtml
│ │ │ │ ├── appsettings.Development.json
│ │ │ │ ├── appsettings.json
│ │ │ │ └── wwwroot
│ │ │ │ ├── css
│ │ │ │ └── basic-company.css
│ │ │ │ ├── favicon.ico
│ │ │ │ └── js
│ │ │ │ └── basic-company.js
│ │ │ └── DemoContent
│ │ │ ├── DemoContent.module.json
│ │ │ └── items
│ │ │ ├── content
│ │ │ ├── Basic Company.yml
│ │ │ └── Basic Company
│ │ │ │ ├── Dictionary.yml
│ │ │ │ ├── Dictionary
│ │ │ │ ├── Products-Detail-Price.yml
│ │ │ │ └── Products-RelatedProducts-Title.yml
│ │ │ │ ├── Home.yml
│ │ │ │ ├── Home
│ │ │ │ ├── Page Components.yml
│ │ │ │ ├── Page Components
│ │ │ │ │ ├── Hero Banner.yml
│ │ │ │ │ └── Section Header.yml
│ │ │ │ ├── Products.yml
│ │ │ │ ├── Products
│ │ │ │ │ ├── 2019
│ │ │ │ │ │ ├── 05.yml
│ │ │ │ │ │ └── 05
│ │ │ │ │ │ │ ├── 03.yml
│ │ │ │ │ │ │ └── 03
│ │ │ │ │ │ │ ├── 16
│ │ │ │ │ │ │ ├── 40
│ │ │ │ │ │ │ │ ├── Ante condimentum tempor dictum.yml
│ │ │ │ │ │ │ │ ├── Molestie et faucibus vel.yml
│ │ │ │ │ │ │ │ └── Ut praesent litora.yml
│ │ │ │ │ │ │ ├── 41
│ │ │ │ │ │ │ │ ├── Ac vivamus quam.yml
│ │ │ │ │ │ │ │ ├── At potenti morbi.yml
│ │ │ │ │ │ │ │ ├── Condimentum metus viverra ipsum.yml
│ │ │ │ │ │ │ │ ├── Curae sociosqu.yml
│ │ │ │ │ │ │ │ ├── Euismod semper quisque mollis.yml
│ │ │ │ │ │ │ │ ├── Feugiat torquent non.yml
│ │ │ │ │ │ │ │ ├── Interdum ut metus.yml
│ │ │ │ │ │ │ │ ├── Maecenas nam.yml
│ │ │ │ │ │ │ │ ├── Placerat mi nunc.yml
│ │ │ │ │ │ │ │ ├── Quam eros hac.yml
│ │ │ │ │ │ │ │ ├── Scelerisque ornare.yml
│ │ │ │ │ │ │ │ ├── Sociosqu fermentum eget lorem.yml
│ │ │ │ │ │ │ │ ├── Sollicitudin suspendisse.yml
│ │ │ │ │ │ │ │ ├── Tempor duis sociosqu.yml
│ │ │ │ │ │ │ │ ├── Turpis volutpat convallis.yml
│ │ │ │ │ │ │ │ ├── Ullamcorper varius.yml
│ │ │ │ │ │ │ │ └── Ut nullam.yml
│ │ │ │ │ │ │ ├── 40.yml
│ │ │ │ │ │ │ └── 41.yml
│ │ │ │ │ │ │ └── 16.yml
│ │ │ │ │ ├── 2019.yml
│ │ │ │ │ ├── Page Components.yml
│ │ │ │ │ └── Page Components
│ │ │ │ │ │ └── Product List Hero.yml
│ │ │ │ ├── Services.yml
│ │ │ │ └── Services
│ │ │ │ │ ├── Page Components.yml
│ │ │ │ │ └── Page Components
│ │ │ │ │ ├── FAQ Dolor.yml
│ │ │ │ │ ├── FAQ Ipsum.yml
│ │ │ │ │ ├── FAQ Lorem.yml
│ │ │ │ │ ├── FAQ Sit.yml
│ │ │ │ │ ├── Frequently Asked Questions.yml
│ │ │ │ │ ├── Services.yml
│ │ │ │ │ ├── Testimonial Dolor.yml
│ │ │ │ │ ├── Testimonial Ipsum.yml
│ │ │ │ │ ├── Testimonial Lorem.yml
│ │ │ │ │ └── Testimonial Sit.yml
│ │ │ │ ├── Shared Content.yml
│ │ │ │ └── Shared Content
│ │ │ │ ├── Accordion Items.yml
│ │ │ │ ├── Hero Banners.yml
│ │ │ │ ├── Promo Cards.yml
│ │ │ │ ├── Promo Cards
│ │ │ │ ├── Dolor Sit.yml
│ │ │ │ ├── Etiam ultricies.yml
│ │ │ │ ├── Lorem Ipsum.yml
│ │ │ │ ├── Nullam vel.yml
│ │ │ │ └── Nunc nulla.yml
│ │ │ │ ├── Section Headers.yml
│ │ │ │ └── Testimonials.yml
│ │ │ └── media
│ │ │ ├── Basic Company.yml
│ │ │ └── Basic Company
│ │ │ ├── faq-1.yml
│ │ │ ├── helix logo.yml
│ │ │ ├── hero home.yml
│ │ │ ├── hero-products.yml
│ │ │ ├── product.yml
│ │ │ ├── promo-card-1.yml
│ │ │ ├── promo-card-2.yml
│ │ │ ├── promo-card-3.yml
│ │ │ ├── promo-card-4.yml
│ │ │ ├── promo-card-5.yml
│ │ │ ├── testimonial-1.yml
│ │ │ └── testimonial-2.yml
│ └── up.ps1
├── helix-basic-nextjs
│ ├── .config
│ │ └── dotnet-tools.json
│ ├── .dockerignore
│ ├── .env
│ ├── .gitignore
│ ├── .sitecore
│ │ └── schemas
│ │ │ ├── ModuleFile.schema.json
│ │ │ ├── RootConfigurationFile.schema.json
│ │ │ └── UserConfiguration.schema.json
│ ├── .vscode
│ │ └── settings.json
│ ├── BasicCompany.sln
│ ├── Directory.Build.targets
│ ├── Dockerfile
│ ├── Packages.props
│ ├── README.md
│ ├── docker-compose.override.yml
│ ├── docker-compose.yml
│ ├── docker
│ │ ├── .gitignore
│ │ ├── README.md
│ │ ├── build
│ │ │ ├── README.md
│ │ │ ├── cd
│ │ │ │ └── Dockerfile
│ │ │ ├── cm
│ │ │ │ └── Dockerfile
│ │ │ ├── id
│ │ │ │ └── Dockerfile
│ │ │ ├── mssql
│ │ │ │ └── Dockerfile
│ │ │ ├── nodejs
│ │ │ │ └── Dockerfile
│ │ │ ├── redis
│ │ │ │ └── Dockerfile
│ │ │ ├── rendering
│ │ │ │ └── Dockerfile
│ │ │ └── solr-init
│ │ │ │ └── Dockerfile
│ │ ├── clean.ps1
│ │ ├── data
│ │ │ ├── cd
│ │ │ │ └── .gitkeep
│ │ │ ├── cm
│ │ │ │ └── .gitkeep
│ │ │ ├── solr
│ │ │ │ └── .gitkeep
│ │ │ └── sql
│ │ │ │ └── .gitkeep
│ │ ├── deploy
│ │ │ └── platform
│ │ │ │ └── .gitkeep
│ │ └── traefik
│ │ │ ├── README.md
│ │ │ ├── certs
│ │ │ └── .gitignore
│ │ │ └── config
│ │ │ └── dynamic
│ │ │ └── certs_config.yaml
│ ├── init.ps1
│ ├── nuget.config
│ ├── sitecore.json
│ ├── src
│ │ ├── Environment
│ │ │ └── platform
│ │ │ │ ├── App_Config
│ │ │ │ └── Include
│ │ │ │ │ ├── Sitecore.LoadBalancing.config
│ │ │ │ │ └── Sitecore.MediaDefaults.config
│ │ │ │ ├── BasicCompany.Environment.Platform.csproj
│ │ │ │ ├── BasicCompany.Environment.Platform.wpp.targets
│ │ │ │ ├── Directory.Build.props
│ │ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ └── PublishProfiles
│ │ │ │ │ └── Local.pubxml
│ │ │ │ ├── Web.Debug.config
│ │ │ │ ├── Web.Release.config
│ │ │ │ └── Web.config
│ │ ├── Feature
│ │ │ ├── BasicContent
│ │ │ │ ├── BasicContent.module.json
│ │ │ │ ├── README.md
│ │ │ │ └── items
│ │ │ │ │ ├── buttons
│ │ │ │ │ ├── BasicContent.yml
│ │ │ │ │ └── BasicContent
│ │ │ │ │ │ ├── Hero Banner.yml
│ │ │ │ │ │ └── Promo Card.yml
│ │ │ │ │ ├── renderings
│ │ │ │ │ ├── BasicContent.yml
│ │ │ │ │ └── BasicContent
│ │ │ │ │ │ ├── Accordion Item.yml
│ │ │ │ │ │ ├── Accordion.yml
│ │ │ │ │ │ ├── Hero Banner.yml
│ │ │ │ │ │ ├── Promo Card.yml
│ │ │ │ │ │ ├── Promo Container.yml
│ │ │ │ │ │ └── Section Header.yml
│ │ │ │ │ └── templates
│ │ │ │ │ ├── BasicContent.yml
│ │ │ │ │ └── BasicContent
│ │ │ │ │ ├── Accordion Item Folder.yml
│ │ │ │ │ ├── Accordion Item Folder
│ │ │ │ │ └── __Standard Values.yml
│ │ │ │ │ ├── Accordion Item.yml
│ │ │ │ │ ├── Accordion Item
│ │ │ │ │ ├── Accordion Item.yml
│ │ │ │ │ └── Accordion Item
│ │ │ │ │ │ ├── Content.yml
│ │ │ │ │ │ └── Title.yml
│ │ │ │ │ ├── Hero Banner Folder.yml
│ │ │ │ │ ├── Hero Banner Folder
│ │ │ │ │ └── __Standard Values.yml
│ │ │ │ │ ├── Hero Banner.yml
│ │ │ │ │ ├── Hero Banner
│ │ │ │ │ ├── Banner.yml
│ │ │ │ │ ├── Banner
│ │ │ │ │ │ ├── Image.yml
│ │ │ │ │ │ ├── Subtitle.yml
│ │ │ │ │ │ └── Title.yml
│ │ │ │ │ └── __Standard Values.yml
│ │ │ │ │ ├── Promo Card Folder.yml
│ │ │ │ │ ├── Promo Card Folder
│ │ │ │ │ └── __Standard Values.yml
│ │ │ │ │ ├── Promo Card.yml
│ │ │ │ │ ├── Promo Card
│ │ │ │ │ ├── Promo Card.yml
│ │ │ │ │ ├── Promo Card
│ │ │ │ │ │ ├── Headline.yml
│ │ │ │ │ │ ├── Image.yml
│ │ │ │ │ │ ├── Link.yml
│ │ │ │ │ │ └── Text.yml
│ │ │ │ │ └── __Standard Values.yml
│ │ │ │ │ ├── Section Header Folder.yml
│ │ │ │ │ ├── Section Header Folder
│ │ │ │ │ └── __Standard Values.yml
│ │ │ │ │ ├── Section Header.yml
│ │ │ │ │ └── Section Header
│ │ │ │ │ ├── Header.yml
│ │ │ │ │ ├── Header
│ │ │ │ │ └── Text.yml
│ │ │ │ │ └── __Standard Values.yml
│ │ │ ├── Navigation
│ │ │ │ ├── Navigation.module.json
│ │ │ │ ├── README.md
│ │ │ │ └── items
│ │ │ │ │ ├── renderings
│ │ │ │ │ ├── Navigation.yml
│ │ │ │ │ └── Navigation
│ │ │ │ │ │ ├── Footer.yml
│ │ │ │ │ │ └── Header.yml
│ │ │ │ │ └── templates
│ │ │ │ │ ├── Navigation.yml
│ │ │ │ │ └── Navigation
│ │ │ │ │ ├── _NavigationItem.yml
│ │ │ │ │ ├── _NavigationItem
│ │ │ │ │ ├── Navigation.yml
│ │ │ │ │ ├── Navigation
│ │ │ │ │ │ └── NavigationTitle.yml
│ │ │ │ │ └── __Standard Values.yml
│ │ │ │ │ ├── _NavigationRoot.yml
│ │ │ │ │ └── _NavigationRoot
│ │ │ │ │ ├── Header and Footer.yml
│ │ │ │ │ └── Header and Footer
│ │ │ │ │ ├── FooterCopyright.yml
│ │ │ │ │ └── HeaderLogo.yml
│ │ │ ├── Products
│ │ │ │ ├── Products.module.json
│ │ │ │ ├── README.md
│ │ │ │ ├── items
│ │ │ │ │ ├── contents-resolvers
│ │ │ │ │ │ ├── Products.yml
│ │ │ │ │ │ └── Products
│ │ │ │ │ │ │ └── Product List.yml
│ │ │ │ │ ├── renderings
│ │ │ │ │ │ ├── Products.yml
│ │ │ │ │ │ └── Products
│ │ │ │ │ │ │ ├── Product Detail Header.yml
│ │ │ │ │ │ │ ├── Product Detail.yml
│ │ │ │ │ │ │ ├── Product List.yml
│ │ │ │ │ │ │ └── Related Products.yml
│ │ │ │ │ └── templates
│ │ │ │ │ │ ├── Products.yml
│ │ │ │ │ │ └── Products
│ │ │ │ │ │ ├── _Product.yml
│ │ │ │ │ │ └── _Product
│ │ │ │ │ │ ├── Product.yml
│ │ │ │ │ │ ├── Product
│ │ │ │ │ │ ├── Features.yml
│ │ │ │ │ │ ├── Image.yml
│ │ │ │ │ │ ├── Price.yml
│ │ │ │ │ │ ├── RelatedProducts.yml
│ │ │ │ │ │ ├── ShortDescription.yml
│ │ │ │ │ │ └── Title.yml
│ │ │ │ │ │ └── __Standard Values.yml
│ │ │ │ └── platform
│ │ │ │ │ ├── App_Config
│ │ │ │ │ └── Include
│ │ │ │ │ │ └── Feature
│ │ │ │ │ │ └── Feature.Products.config
│ │ │ │ │ ├── BasicCompany.Feature.Products.Platform.csproj
│ │ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ │ ├── Web.Debug.config
│ │ │ │ │ ├── Web.Release.config
│ │ │ │ │ └── Web.config
│ │ │ └── Services
│ │ │ │ ├── README.md
│ │ │ │ ├── Services.module.json
│ │ │ │ └── items
│ │ │ │ ├── buttons
│ │ │ │ ├── Services.yml
│ │ │ │ └── Services
│ │ │ │ │ └── Testimonial.yml
│ │ │ │ ├── renderings
│ │ │ │ ├── Services.yml
│ │ │ │ └── Services
│ │ │ │ │ ├── Testimonial Container.yml
│ │ │ │ │ └── Testimonial.yml
│ │ │ │ └── templates
│ │ │ │ ├── Services.yml
│ │ │ │ └── Services
│ │ │ │ ├── Testimonial Folder.yml
│ │ │ │ ├── Testimonial Folder
│ │ │ │ └── __Standard Values.yml
│ │ │ │ ├── Testimonial.yml
│ │ │ │ └── Testimonial
│ │ │ │ ├── Testimonial.yml
│ │ │ │ └── Testimonial
│ │ │ │ ├── Image.yml
│ │ │ │ ├── Quote.yml
│ │ │ │ └── Title.yml
│ │ ├── Foundation
│ │ │ └── Multisite
│ │ │ │ ├── Multisite.module.json
│ │ │ │ ├── README.md
│ │ │ │ └── items
│ │ │ │ └── templates
│ │ │ │ ├── Multisite.yml
│ │ │ │ └── Multisite
│ │ │ │ └── Site.yml
│ │ └── Project
│ │ │ ├── BasicCompany
│ │ │ ├── BasicCompany.module.json
│ │ │ ├── README.md
│ │ │ ├── items
│ │ │ │ ├── api-key
│ │ │ │ │ └── basic-company.yml
│ │ │ │ ├── branches
│ │ │ │ │ ├── BasicCompany.yml
│ │ │ │ │ └── BasicCompany
│ │ │ │ │ │ ├── Home Page.yml
│ │ │ │ │ │ ├── Home Page
│ │ │ │ │ │ ├── _name.yml
│ │ │ │ │ │ └── _name
│ │ │ │ │ │ │ └── Page Components.yml
│ │ │ │ │ │ ├── Product List Page.yml
│ │ │ │ │ │ ├── Product List Page
│ │ │ │ │ │ ├── _name.yml
│ │ │ │ │ │ └── _name
│ │ │ │ │ │ │ └── Page Components.yml
│ │ │ │ │ │ ├── Services Page.yml
│ │ │ │ │ │ └── Services Page
│ │ │ │ │ │ ├── _name.yml
│ │ │ │ │ │ └── _name
│ │ │ │ │ │ └── Page Components.yml
│ │ │ │ ├── layouts
│ │ │ │ │ ├── BasicCompany.yml
│ │ │ │ │ └── BasicCompany
│ │ │ │ │ │ └── Default.yml
│ │ │ │ ├── placeholders
│ │ │ │ │ ├── BasicCompany.yml
│ │ │ │ │ └── BasicCompany
│ │ │ │ │ │ ├── Accordion.yml
│ │ │ │ │ │ ├── Footer.yml
│ │ │ │ │ │ ├── Header.yml
│ │ │ │ │ │ ├── Main Layout.yml
│ │ │ │ │ │ ├── Product Detail Page.yml
│ │ │ │ │ │ ├── Product List Page.yml
│ │ │ │ │ │ ├── Promo Container.yml
│ │ │ │ │ │ ├── Services Page.yml
│ │ │ │ │ │ └── Testimonial Container.yml
│ │ │ │ ├── site-root-rule
│ │ │ │ │ └── BasicCompany Site Root.yml
│ │ │ │ └── templates
│ │ │ │ │ ├── BasicCompany.yml
│ │ │ │ │ └── BasicCompany
│ │ │ │ │ ├── Folder Types.yml
│ │ │ │ │ ├── Folder Types
│ │ │ │ │ ├── Page Component Folder.yml
│ │ │ │ │ └── Page Component Folder
│ │ │ │ │ │ └── __Standard Values.yml
│ │ │ │ │ ├── Page Types.yml
│ │ │ │ │ └── Page Types
│ │ │ │ │ ├── Home Page.yml
│ │ │ │ │ ├── Home Page
│ │ │ │ │ └── __Standard Values.yml
│ │ │ │ │ ├── Page.yml
│ │ │ │ │ ├── Page
│ │ │ │ │ └── __Standard Values.yml
│ │ │ │ │ ├── Product Detail Page.yml
│ │ │ │ │ ├── Product Detail Page
│ │ │ │ │ └── __Standard Values.yml
│ │ │ │ │ ├── Product List Page.yml
│ │ │ │ │ ├── Product List Page
│ │ │ │ │ └── __Standard Values.yml
│ │ │ │ │ ├── Services Page.yml
│ │ │ │ │ └── Services Page
│ │ │ │ │ └── __Standard Values.yml
│ │ │ ├── nextjs
│ │ │ │ ├── .env
│ │ │ │ ├── .eslintrc
│ │ │ │ ├── .gitignore
│ │ │ │ ├── .graphql-let.yml
│ │ │ │ ├── .prettierignore
│ │ │ │ ├── .prettierrc
│ │ │ │ ├── .storybook
│ │ │ │ │ ├── main.js
│ │ │ │ │ ├── next-preset.js
│ │ │ │ │ └── preview.js
│ │ │ │ ├── .vscode
│ │ │ │ │ ├── launch.json
│ │ │ │ │ └── settings.json
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── next-env.d.ts
│ │ │ │ ├── next.config.js
│ │ │ │ ├── package-lock.json
│ │ │ │ ├── package.json
│ │ │ │ ├── public
│ │ │ │ │ ├── favicon.ico
│ │ │ │ │ └── sc_logo.svg
│ │ │ │ ├── scjssconfig.json
│ │ │ │ ├── scripts
│ │ │ │ │ ├── bootstrap.ts
│ │ │ │ │ ├── fetch-graphql-introspection-data.ts
│ │ │ │ │ ├── generate-component-factory.ts
│ │ │ │ │ ├── generate-config.ts
│ │ │ │ │ ├── scaffold-component.ts
│ │ │ │ │ ├── templates
│ │ │ │ │ │ ├── component-factory.ts
│ │ │ │ │ │ ├── component-manifest.ts
│ │ │ │ │ │ └── component-src.ts
│ │ │ │ │ └── update-graphql-fragment-data.ts
│ │ │ │ ├── src
│ │ │ │ │ ├── assets
│ │ │ │ │ │ ├── app.css
│ │ │ │ │ │ └── basic-company.css
│ │ │ │ │ ├── components
│ │ │ │ │ │ ├── BasicContent
│ │ │ │ │ │ │ ├── Accordion.stories.tsx
│ │ │ │ │ │ │ ├── Accordion.tsx
│ │ │ │ │ │ │ ├── AccordionItem.stories.tsx
│ │ │ │ │ │ │ ├── AccordionItem.tsx
│ │ │ │ │ │ │ ├── HeroBanner.stories.tsx
│ │ │ │ │ │ │ ├── HeroBanner.tsx
│ │ │ │ │ │ │ ├── PromoCard.stories.tsx
│ │ │ │ │ │ │ ├── PromoCard.tsx
│ │ │ │ │ │ │ ├── PromoContainer.stories.tsx
│ │ │ │ │ │ │ ├── PromoContainer.tsx
│ │ │ │ │ │ │ ├── SectionHeader.stories.tsx
│ │ │ │ │ │ │ └── SectionHeader.tsx
│ │ │ │ │ │ ├── Layout.tsx
│ │ │ │ │ │ ├── Navigation
│ │ │ │ │ │ │ ├── Footer.stories.tsx
│ │ │ │ │ │ │ ├── Footer.tsx
│ │ │ │ │ │ │ ├── Header.stories.tsx
│ │ │ │ │ │ │ ├── Header.tsx
│ │ │ │ │ │ │ ├── Navigation.graphql
│ │ │ │ │ │ │ └── NavigationDataContext.tsx
│ │ │ │ │ │ ├── NotFound.tsx
│ │ │ │ │ │ ├── Products
│ │ │ │ │ │ │ ├── ProductDetail.stories.tsx
│ │ │ │ │ │ │ ├── ProductDetail.tsx
│ │ │ │ │ │ │ ├── ProductDetailHeader.stories.tsx
│ │ │ │ │ │ │ ├── ProductDetailHeader.tsx
│ │ │ │ │ │ │ ├── ProductList.graphql
│ │ │ │ │ │ │ ├── ProductList.tsx
│ │ │ │ │ │ │ ├── RelatedProducts.stories.tsx
│ │ │ │ │ │ │ └── RelatedProducts.tsx
│ │ │ │ │ │ └── Services
│ │ │ │ │ │ │ ├── Testimonial.stories.tsx
│ │ │ │ │ │ │ ├── Testimonial.tsx
│ │ │ │ │ │ │ ├── TestimonialContainer.stories.tsx
│ │ │ │ │ │ │ └── TestimonialContainer.tsx
│ │ │ │ │ ├── lib
│ │ │ │ │ │ ├── data-fetcher.ts
│ │ │ │ │ │ ├── graphql-sitemap-service.ts
│ │ │ │ │ │ ├── helpers
│ │ │ │ │ │ │ ├── ListProduct.stories.tsx
│ │ │ │ │ │ │ └── ListProduct.tsx
│ │ │ │ │ │ ├── page-props-factory.ts
│ │ │ │ │ │ ├── page-props.ts
│ │ │ │ │ │ ├── sitecoreTemplates.ts
│ │ │ │ │ │ ├── sitemap-fetcher.ts
│ │ │ │ │ │ └── util.ts
│ │ │ │ │ ├── pages
│ │ │ │ │ │ ├── 404.tsx
│ │ │ │ │ │ ├── [[...path]].tsx
│ │ │ │ │ │ ├── _app.tsx
│ │ │ │ │ │ ├── _error.tsx
│ │ │ │ │ │ └── api
│ │ │ │ │ │ │ └── editing
│ │ │ │ │ │ │ ├── data
│ │ │ │ │ │ │ └── [key].ts
│ │ │ │ │ │ │ └── render.ts
│ │ │ │ │ └── temp
│ │ │ │ │ │ ├── .gitignore
│ │ │ │ │ │ ├── GraphQLFragmentTypes.json
│ │ │ │ │ │ └── GraphQLIntrospectionResult.json
│ │ │ │ ├── tsconfig.json
│ │ │ │ └── tsconfig.scripts.json
│ │ │ └── platform
│ │ │ │ ├── App_Config
│ │ │ │ └── Include
│ │ │ │ │ └── Project
│ │ │ │ │ └── Project.BasicCompany.config
│ │ │ │ ├── BasicCompany.Project.BasicCompany.Platform.csproj
│ │ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── css
│ │ │ │ └── basic-company.css
│ │ │ │ ├── js
│ │ │ │ └── basic-company.js
│ │ │ │ ├── web.Debug.config
│ │ │ │ ├── web.Release.config
│ │ │ │ └── web.config
│ │ │ └── DemoContent
│ │ │ ├── DemoContent.module.json
│ │ │ └── items
│ │ │ ├── content
│ │ │ ├── BasicCompany.yml
│ │ │ └── BasicCompany
│ │ │ │ ├── Dictionary.yml
│ │ │ │ ├── Dictionary
│ │ │ │ ├── Products-Detail-Price.yml
│ │ │ │ └── Products-RelatedProducts-Title.yml
│ │ │ │ ├── Home.yml
│ │ │ │ ├── Home
│ │ │ │ ├── Page Components.yml
│ │ │ │ ├── Page Components
│ │ │ │ │ ├── Hero Banner.yml
│ │ │ │ │ └── Section Header.yml
│ │ │ │ ├── Products.yml
│ │ │ │ ├── Products
│ │ │ │ │ ├── 2019
│ │ │ │ │ │ ├── 05.yml
│ │ │ │ │ │ └── 05
│ │ │ │ │ │ │ ├── 03.yml
│ │ │ │ │ │ │ └── 03
│ │ │ │ │ │ │ ├── 16
│ │ │ │ │ │ │ ├── 40
│ │ │ │ │ │ │ │ ├── Ante condimentum tempor dictum.yml
│ │ │ │ │ │ │ │ ├── Molestie et faucibus vel.yml
│ │ │ │ │ │ │ │ └── Ut praesent litora.yml
│ │ │ │ │ │ │ ├── 41
│ │ │ │ │ │ │ │ ├── Ac vivamus quam.yml
│ │ │ │ │ │ │ │ ├── At potenti morbi.yml
│ │ │ │ │ │ │ │ ├── Condimentum metus viverra ipsum.yml
│ │ │ │ │ │ │ │ ├── Curae sociosqu.yml
│ │ │ │ │ │ │ │ ├── Euismod semper quisque mollis.yml
│ │ │ │ │ │ │ │ ├── Feugiat torquent non.yml
│ │ │ │ │ │ │ │ ├── Interdum ut metus.yml
│ │ │ │ │ │ │ │ ├── Maecenas nam.yml
│ │ │ │ │ │ │ │ ├── Placerat mi nunc.yml
│ │ │ │ │ │ │ │ ├── Quam eros hac.yml
│ │ │ │ │ │ │ │ ├── Scelerisque ornare.yml
│ │ │ │ │ │ │ │ ├── Sociosqu fermentum eget lorem.yml
│ │ │ │ │ │ │ │ ├── Sollicitudin suspendisse.yml
│ │ │ │ │ │ │ │ ├── Tempor duis sociosqu.yml
│ │ │ │ │ │ │ │ ├── Turpis volutpat convallis.yml
│ │ │ │ │ │ │ │ ├── Ullamcorper varius.yml
│ │ │ │ │ │ │ │ └── Ut nullam.yml
│ │ │ │ │ │ │ ├── 40.yml
│ │ │ │ │ │ │ └── 41.yml
│ │ │ │ │ │ │ └── 16.yml
│ │ │ │ │ ├── 2019.yml
│ │ │ │ │ ├── Page Components.yml
│ │ │ │ │ └── Page Components
│ │ │ │ │ │ └── Product List Hero.yml
│ │ │ │ ├── Services.yml
│ │ │ │ └── Services
│ │ │ │ │ ├── Page Components.yml
│ │ │ │ │ └── Page Components
│ │ │ │ │ ├── FAQ Dolor.yml
│ │ │ │ │ ├── FAQ Ipsum.yml
│ │ │ │ │ ├── FAQ Lorem.yml
│ │ │ │ │ ├── FAQ Sit.yml
│ │ │ │ │ ├── Frequently Asked Questions.yml
│ │ │ │ │ ├── Services.yml
│ │ │ │ │ ├── Testimonial Dolor.yml
│ │ │ │ │ ├── Testimonial Ipsum.yml
│ │ │ │ │ ├── Testimonial Lorem.yml
│ │ │ │ │ └── Testimonial Sit.yml
│ │ │ │ ├── Shared Content.yml
│ │ │ │ └── Shared Content
│ │ │ │ ├── Accordion Items.yml
│ │ │ │ ├── Hero Banners.yml
│ │ │ │ ├── Promo Cards.yml
│ │ │ │ ├── Promo Cards
│ │ │ │ ├── Dolor Sit.yml
│ │ │ │ ├── Etiam ultricies.yml
│ │ │ │ ├── Lorem Ipsum.yml
│ │ │ │ ├── Nullam vel.yml
│ │ │ │ └── Nunc nulla.yml
│ │ │ │ ├── Section Headers.yml
│ │ │ │ └── Testimonials.yml
│ │ │ └── media
│ │ │ ├── Basic Company.yml
│ │ │ └── Basic Company
│ │ │ ├── faq-1.yml
│ │ │ ├── helix logo.yml
│ │ │ ├── hero home.yml
│ │ │ ├── hero-products.yml
│ │ │ ├── product.yml
│ │ │ ├── promo-card-1.yml
│ │ │ ├── promo-card-2.yml
│ │ │ ├── promo-card-3.yml
│ │ │ ├── promo-card-4.yml
│ │ │ ├── promo-card-5.yml
│ │ │ ├── testimonial-1.yml
│ │ │ └── testimonial-2.yml
│ └── up.ps1
├── helix-basic-tds-consolidated
│ ├── .dockerignore
│ ├── .env
│ ├── .gitignore
│ ├── BasicCompany.sln
│ ├── Directory.Build.targets
│ ├── Dockerfile
│ ├── HelixRules.ruleset
│ ├── Packages.props
│ ├── README.md
│ ├── TdsGlobal.config
│ ├── docker-compose.override.yml
│ ├── docker-compose.yml
│ ├── docker
│ │ ├── .gitignore
│ │ ├── README.md
│ │ ├── build
│ │ │ ├── README.md
│ │ │ ├── cd
│ │ │ │ └── Dockerfile
│ │ │ ├── cm
│ │ │ │ └── Dockerfile
│ │ │ ├── id
│ │ │ │ └── Dockerfile
│ │ │ ├── mssql
│ │ │ │ └── Dockerfile
│ │ │ ├── redis
│ │ │ │ └── Dockerfile
│ │ │ ├── solr-init
│ │ │ │ └── Dockerfile
│ │ │ └── solr
│ │ │ │ └── Dockerfile
│ │ ├── clean.ps1
│ │ ├── data
│ │ │ ├── README.md
│ │ │ ├── cd
│ │ │ │ └── .gitkeep
│ │ │ ├── cm
│ │ │ │ └── .gitkeep
│ │ │ ├── mssql
│ │ │ │ └── .gitkeep
│ │ │ └── solr
│ │ │ │ └── .gitkeep
│ │ ├── deploy
│ │ │ ├── README.md
│ │ │ └── website
│ │ │ │ └── .gitkeep
│ │ └── traefik
│ │ │ ├── README.md
│ │ │ ├── certs
│ │ │ └── .gitkeep
│ │ │ └── config
│ │ │ └── dynamic
│ │ │ └── certs_config.yaml
│ ├── init.ps1
│ ├── nuget.config
│ └── src
│ │ ├── BasicCompany.Items.Content
│ │ ├── BasicCompany.Items.Content.scproj
│ │ ├── packages.config
│ │ └── sitecore
│ │ │ ├── content.yml
│ │ │ ├── content
│ │ │ ├── Basic Company.yml
│ │ │ └── Basic Company
│ │ │ │ ├── Dictionary.yml
│ │ │ │ ├── Dictionary
│ │ │ │ ├── Products-Detail-Price.yml
│ │ │ │ └── Products-RelatedProducts-Title.yml
│ │ │ │ ├── Home.yml
│ │ │ │ ├── Home
│ │ │ │ ├── Page Components.yml
│ │ │ │ ├── Page Components
│ │ │ │ │ ├── Hero Banner.yml
│ │ │ │ │ └── Section Header.yml
│ │ │ │ ├── Products.yml
│ │ │ │ ├── Products
│ │ │ │ │ ├── 2019
│ │ │ │ │ │ ├── 05.yml
│ │ │ │ │ │ └── 05
│ │ │ │ │ │ │ ├── 03.yml
│ │ │ │ │ │ │ └── 03
│ │ │ │ │ │ │ ├── 16
│ │ │ │ │ │ │ ├── 40
│ │ │ │ │ │ │ │ ├── Ante condimentum tempor dictum.yml
│ │ │ │ │ │ │ │ ├── Molestie et faucibus vel.yml
│ │ │ │ │ │ │ │ └── Ut praesent litora.yml
│ │ │ │ │ │ │ ├── 41
│ │ │ │ │ │ │ │ ├── Ac vivamus quam.yml
│ │ │ │ │ │ │ │ ├── At potenti morbi.yml
│ │ │ │ │ │ │ │ ├── Condimentum metus viverra ipsum.yml
│ │ │ │ │ │ │ │ ├── Curae sociosqu.yml
│ │ │ │ │ │ │ │ ├── Euismod semper quisque mollis.yml
│ │ │ │ │ │ │ │ ├── Feugiat torquent non.yml
│ │ │ │ │ │ │ │ ├── Interdum ut metus.yml
│ │ │ │ │ │ │ │ ├── Maecenas nam.yml
│ │ │ │ │ │ │ │ ├── Placerat mi nunc.yml
│ │ │ │ │ │ │ │ ├── Quam eros hac.yml
│ │ │ │ │ │ │ │ ├── Scelerisque ornare.yml
│ │ │ │ │ │ │ │ ├── Sociosqu fermentum eget lorem.yml
│ │ │ │ │ │ │ │ ├── Sollicitudin suspendisse.yml
│ │ │ │ │ │ │ │ ├── Tempor duis sociosqu.yml
│ │ │ │ │ │ │ │ ├── Turpis volutpat convallis.yml
│ │ │ │ │ │ │ │ ├── Ullamcorper varius.yml
│ │ │ │ │ │ │ │ └── Ut nullam.yml
│ │ │ │ │ │ │ ├── 40.yml
│ │ │ │ │ │ │ └── 41.yml
│ │ │ │ │ │ │ └── 16.yml
│ │ │ │ │ ├── 2019.yml
│ │ │ │ │ ├── Page Components.yml
│ │ │ │ │ └── Page Components
│ │ │ │ │ │ └── Product List Hero.yml
│ │ │ │ ├── Services.yml
│ │ │ │ └── Services
│ │ │ │ │ ├── Page Components.yml
│ │ │ │ │ └── Page Components
│ │ │ │ │ ├── FAQ Dolor.yml
│ │ │ │ │ ├── FAQ Ipsum.yml
│ │ │ │ │ ├── FAQ Lorem.yml
│ │ │ │ │ ├── FAQ Sit.yml
│ │ │ │ │ ├── Frequently Asked Questions.yml
│ │ │ │ │ ├── Services.yml
│ │ │ │ │ ├── Testimonial Dolor.yml
│ │ │ │ │ ├── Testimonial Ipsum.yml
│ │ │ │ │ ├── Testimonial Lorem.yml
│ │ │ │ │ └── Testimonial Sit.yml
│ │ │ │ ├── Shared Content.yml
│ │ │ │ └── Shared Content
│ │ │ │ ├── Accordion Items.yml
│ │ │ │ ├── Hero Banners.yml
│ │ │ │ ├── Promo Cards.yml
│ │ │ │ ├── Promo Cards
│ │ │ │ ├── Dolor Sit.yml
│ │ │ │ ├── Etiam ultricies.yml
│ │ │ │ ├── Lorem Ipsum.yml
│ │ │ │ ├── Nullam vel.yml
│ │ │ │ └── Nunc nulla.yml
│ │ │ │ ├── Section Headers.yml
│ │ │ │ └── Testimonials.yml
│ │ │ ├── media library.yml
│ │ │ └── media library
│ │ │ ├── Basic Company.yml
│ │ │ └── Basic Company
│ │ │ ├── faq-1.yml
│ │ │ ├── helix logo.yml
│ │ │ ├── hero home.yml
│ │ │ ├── hero-products.yml
│ │ │ ├── product.yml
│ │ │ ├── promo-card-1.yml
│ │ │ ├── promo-card-2.yml
│ │ │ ├── promo-card-3.yml
│ │ │ ├── promo-card-4.yml
│ │ │ ├── promo-card-5.yml
│ │ │ ├── testimonial-1.yml
│ │ │ └── testimonial-2.yml
│ │ ├── BasicCompany.Items.Core
│ │ ├── BasicCompany.Items.Core.scproj
│ │ ├── packages.config
│ │ └── sitecore
│ │ │ ├── content.yml
│ │ │ └── content
│ │ │ ├── Applications.yml
│ │ │ └── Applications
│ │ │ ├── WebEdit.yml
│ │ │ └── WebEdit
│ │ │ ├── Custom Experience Buttons.yml
│ │ │ └── Custom Experience Buttons
│ │ │ ├── BasicContent.yml
│ │ │ ├── BasicContent
│ │ │ ├── Hero Banner.yml
│ │ │ └── Promo Card.yml
│ │ │ ├── Services.yml
│ │ │ └── Services
│ │ │ └── Testimonial.yml
│ │ ├── BasicCompany.Items.Master
│ │ ├── BasicCompany.Items.Master.scproj
│ │ ├── BasicCompany.Items.Master.xml
│ │ ├── packages.config
│ │ └── sitecore
│ │ │ ├── layout.yml
│ │ │ ├── layout
│ │ │ ├── Layouts.yml
│ │ │ ├── Layouts
│ │ │ │ ├── Project.yml
│ │ │ │ └── Project
│ │ │ │ │ ├── BasicCompany.yml
│ │ │ │ │ └── BasicCompany
│ │ │ │ │ └── Default.yml
│ │ │ ├── Placeholder Settings.yml
│ │ │ ├── Placeholder Settings
│ │ │ │ ├── Project.yml
│ │ │ │ └── Project
│ │ │ │ │ ├── BasicCompany.yml
│ │ │ │ │ └── BasicCompany
│ │ │ │ │ ├── Accordion.yml
│ │ │ │ │ ├── Main Layout.yml
│ │ │ │ │ ├── Product Detail Page.yml
│ │ │ │ │ ├── Product List Page.yml
│ │ │ │ │ ├── Promo Container.yml
│ │ │ │ │ ├── Services Page.yml
│ │ │ │ │ └── Testimonial Container.yml
│ │ │ ├── Renderings.yml
│ │ │ └── Renderings
│ │ │ │ ├── Feature.yml
│ │ │ │ ├── Feature
│ │ │ │ ├── BasicContent.yml
│ │ │ │ ├── BasicContent
│ │ │ │ │ ├── Accordion Item.yml
│ │ │ │ │ ├── Accordion.yml
│ │ │ │ │ ├── Hero Banner.yml
│ │ │ │ │ ├── Promo Card.yml
│ │ │ │ │ ├── Promo Container.yml
│ │ │ │ │ └── Section Header.yml
│ │ │ │ ├── Navigation.yml
│ │ │ │ ├── Navigation
│ │ │ │ │ ├── Footer.yml
│ │ │ │ │ └── Header.yml
│ │ │ │ ├── Products.yml
│ │ │ │ ├── Products
│ │ │ │ │ ├── Product Detail Header.yml
│ │ │ │ │ ├── Product Detail.yml
│ │ │ │ │ ├── Product List.yml
│ │ │ │ │ └── Related Products.yml
│ │ │ │ ├── Services.yml
│ │ │ │ └── Services
│ │ │ │ │ ├── Testimonial Container.yml
│ │ │ │ │ └── Testimonial.yml
│ │ │ │ ├── Project.yml
│ │ │ │ └── Project
│ │ │ │ └── BasicCompany.yml
│ │ │ ├── system.yml
│ │ │ ├── system
│ │ │ ├── Settings.yml
│ │ │ └── Settings
│ │ │ │ ├── Rules.yml
│ │ │ │ └── Rules
│ │ │ │ ├── Insert Options.yml
│ │ │ │ └── Insert Options
│ │ │ │ ├── Rules.yml
│ │ │ │ └── Rules
│ │ │ │ └── BasicCompany Site Root.yml
│ │ │ ├── templates.yml
│ │ │ └── templates
│ │ │ ├── Branches.yml
│ │ │ ├── Branches
│ │ │ ├── Project.yml
│ │ │ └── Project
│ │ │ │ ├── BasicCompany.yml
│ │ │ │ └── BasicCompany
│ │ │ │ ├── Home Page.yml
│ │ │ │ ├── Home Page
│ │ │ │ ├── %24name.yml
│ │ │ │ └── %24name
│ │ │ │ │ └── Page Components.yml
│ │ │ │ ├── Product List Page.yml
│ │ │ │ ├── Product List Page
│ │ │ │ ├── %24name.yml
│ │ │ │ └── %24name
│ │ │ │ │ └── Page Components.yml
│ │ │ │ ├── Services Page.yml
│ │ │ │ └── Services Page
│ │ │ │ ├── %24name.yml
│ │ │ │ └── %24name
│ │ │ │ └── Page Components.yml
│ │ │ ├── Feature.yml
│ │ │ ├── Feature
│ │ │ ├── BasicContent.yml
│ │ │ ├── BasicContent
│ │ │ │ ├── Accordion Item Folder.yml
│ │ │ │ ├── Accordion Item Folder
│ │ │ │ │ └── __Standard Values.yml
│ │ │ │ ├── Accordion Item.yml
│ │ │ │ ├── Accordion Item
│ │ │ │ │ ├── Accordion Item.yml
│ │ │ │ │ └── Accordion Item
│ │ │ │ │ │ ├── Content.yml
│ │ │ │ │ │ └── Title.yml
│ │ │ │ ├── Hero Banner Folder.yml
│ │ │ │ ├── Hero Banner Folder
│ │ │ │ │ └── __Standard Values.yml
│ │ │ │ ├── Hero Banner.yml
│ │ │ │ ├── Hero Banner
│ │ │ │ │ ├── Banner.yml
│ │ │ │ │ ├── Banner
│ │ │ │ │ │ ├── Image.yml
│ │ │ │ │ │ ├── Subtitle.yml
│ │ │ │ │ │ └── Title.yml
│ │ │ │ │ └── __Standard Values.yml
│ │ │ │ ├── Promo Card Folder.yml
│ │ │ │ ├── Promo Card Folder
│ │ │ │ │ └── __Standard Values.yml
│ │ │ │ ├── Promo Card.yml
│ │ │ │ ├── Promo Card
│ │ │ │ │ ├── Promo Card.yml
│ │ │ │ │ ├── Promo Card
│ │ │ │ │ │ ├── Headline.yml
│ │ │ │ │ │ ├── Image.yml
│ │ │ │ │ │ ├── Link.yml
│ │ │ │ │ │ └── Text.yml
│ │ │ │ │ └── __Standard Values.yml
│ │ │ │ ├── Section Header Folder.yml
│ │ │ │ ├── Section Header Folder
│ │ │ │ │ └── __Standard Values.yml
│ │ │ │ ├── Section Header.yml
│ │ │ │ └── Section Header
│ │ │ │ │ ├── Header.yml
│ │ │ │ │ ├── Header
│ │ │ │ │ └── Text.yml
│ │ │ │ │ └── __Standard Values.yml
│ │ │ ├── Navigation.yml
│ │ │ ├── Navigation
│ │ │ │ ├── _NavigationItem.yml
│ │ │ │ ├── _NavigationItem
│ │ │ │ │ ├── Navigation.yml
│ │ │ │ │ ├── Navigation
│ │ │ │ │ │ └── Navigation Title.yml
│ │ │ │ │ └── __Standard Values.yml
│ │ │ │ ├── _NavigationRoot.yml
│ │ │ │ └── _NavigationRoot
│ │ │ │ │ ├── Header and Footer.yml
│ │ │ │ │ └── Header and Footer
│ │ │ │ │ ├── Footer Copyright.yml
│ │ │ │ │ └── Header Logo.yml
│ │ │ ├── Products.yml
│ │ │ ├── Products
│ │ │ │ ├── _Product.yml
│ │ │ │ └── _Product
│ │ │ │ │ ├── Product.yml
│ │ │ │ │ ├── Product
│ │ │ │ │ ├── Features.yml
│ │ │ │ │ ├── Image.yml
│ │ │ │ │ ├── Price.yml
│ │ │ │ │ ├── Related Products.yml
│ │ │ │ │ ├── Short Description.yml
│ │ │ │ │ └── Title.yml
│ │ │ │ │ └── __Standard Values.yml
│ │ │ ├── Services.yml
│ │ │ └── Services
│ │ │ │ ├── Testimonial Folder.yml
│ │ │ │ ├── Testimonial Folder
│ │ │ │ └── __Standard Values.yml
│ │ │ │ ├── Testimonial.yml
│ │ │ │ └── Testimonial
│ │ │ │ ├── Testimonial.yml
│ │ │ │ └── Testimonial
│ │ │ │ ├── Image.yml
│ │ │ │ ├── Quote.yml
│ │ │ │ └── Title.yml
│ │ │ ├── Foundation.yml
│ │ │ ├── Foundation
│ │ │ ├── Multisite.yml
│ │ │ └── Multisite
│ │ │ │ └── Site.yml
│ │ │ ├── Project.yml
│ │ │ └── Project
│ │ │ ├── BasicCompany.yml
│ │ │ └── BasicCompany
│ │ │ ├── Folder Types.yml
│ │ │ ├── Folder Types
│ │ │ ├── Page Component Folder.yml
│ │ │ └── Page Component Folder
│ │ │ │ └── __Standard Values.yml
│ │ │ ├── Page Types.yml
│ │ │ └── Page Types
│ │ │ ├── Home Page.yml
│ │ │ ├── Home Page
│ │ │ └── __Standard Values.yml
│ │ │ ├── Page.yml
│ │ │ ├── Page
│ │ │ └── __Standard Values.yml
│ │ │ ├── Product Detail Page.yml
│ │ │ ├── Product Detail Page
│ │ │ └── __Standard Values.yml
│ │ │ ├── Product List Page.yml
│ │ │ ├── Product List Page
│ │ │ └── __Standard Values.yml
│ │ │ ├── Services Page.yml
│ │ │ └── Services Page
│ │ │ └── __Standard Values.yml
│ │ ├── BasicCompany.Web.Tests
│ │ ├── BasicCompany.Web.Tests.csproj
│ │ ├── Feature
│ │ │ ├── Navigation
│ │ │ │ ├── HeaderBuilderTests.cs
│ │ │ │ └── NavigationRootResolverTests.cs
│ │ │ └── Products
│ │ │ │ └── ProductRepositoryTests.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── app.config
│ │ └── BasicCompany.Web
│ │ ├── App_Config
│ │ ├── Environment
│ │ │ └── EnableYaml.Dev.config
│ │ └── Include
│ │ │ ├── Feature
│ │ │ ├── Feature.Navigation.config
│ │ │ ├── Feature.Products.ContentSearch.config
│ │ │ └── Feature.Products.config
│ │ │ └── Project
│ │ │ └── Project.BasicCompany.config
│ │ ├── BasicCompany.Web.csproj
│ │ ├── Feature
│ │ ├── BasicContent
│ │ │ ├── README.md
│ │ │ └── Templates.cs
│ │ ├── Navigation
│ │ │ ├── Controllers
│ │ │ │ └── NavigationController.cs
│ │ │ ├── Models
│ │ │ │ ├── Header.cs
│ │ │ │ └── NavigationItem.cs
│ │ │ ├── README.md
│ │ │ ├── Services
│ │ │ │ ├── HeaderBuilder.cs
│ │ │ │ ├── IHeaderBuilder.cs
│ │ │ │ ├── INavigationRootResolver.cs
│ │ │ │ └── NavigationRootResolver.cs
│ │ │ ├── ServicesConfigurator.cs
│ │ │ └── Templates.cs
│ │ ├── Products
│ │ │ ├── Controllers
│ │ │ │ └── ProductsController.cs
│ │ │ ├── README.md
│ │ │ ├── Services
│ │ │ │ ├── IProductRepository.cs
│ │ │ │ ├── ProductRepository.cs
│ │ │ │ └── ProductSearchQuery.cs
│ │ │ ├── ServicesConfigurator.cs
│ │ │ └── Templates.cs
│ │ └── Services
│ │ │ ├── README.md
│ │ │ └── Templates.cs
│ │ ├── Foundation
│ │ ├── FieldRendering
│ │ │ ├── README.md
│ │ │ └── SitecoreHelperExtensions.cs
│ │ └── Multisite
│ │ │ └── README.md
│ │ ├── Project
│ │ └── BasicCompany
│ │ │ ├── css
│ │ │ └── basic-company.css
│ │ │ └── js
│ │ │ └── basic-company.js
│ │ ├── Properties
│ │ └── AssemblyInfo.cs
│ │ └── Views
│ │ ├── BasicCompany
│ │ └── Layouts
│ │ │ └── Default.cshtml
│ │ ├── BasicContent
│ │ ├── Accordion.cshtml
│ │ ├── AccordionItem.cshtml
│ │ ├── HeroBanner.cshtml
│ │ ├── PromoCard.cshtml
│ │ ├── PromoContainer.cshtml
│ │ └── SectionHeader.cshtml
│ │ ├── Navigation
│ │ ├── Footer.cshtml
│ │ └── Header.cshtml
│ │ ├── Products
│ │ ├── Detail Header.cshtml
│ │ ├── Detail.cshtml
│ │ ├── List.cshtml
│ │ ├── Related Products.cshtml
│ │ └── _ListProduct.cshtml
│ │ ├── Services
│ │ ├── Testimonial.cshtml
│ │ └── TestimonialContainer.cshtml
│ │ ├── Web.config.xdt
│ │ └── web.config
├── helix-basic-tds
│ ├── .dockerignore
│ ├── .env
│ ├── .gitignore
│ ├── BasicCompany.sln
│ ├── Directory.Build.targets
│ ├── Dockerfile
│ ├── Packages.props
│ ├── README.md
│ ├── TdsGlobal.config
│ ├── docker-compose.override.yml
│ ├── docker-compose.yml
│ ├── docker
│ │ ├── .gitignore
│ │ ├── README.md
│ │ ├── build
│ │ │ ├── README.md
│ │ │ ├── cd
│ │ │ │ └── Dockerfile
│ │ │ ├── cm
│ │ │ │ └── Dockerfile
│ │ │ ├── id
│ │ │ │ └── Dockerfile
│ │ │ ├── mssql
│ │ │ │ └── Dockerfile
│ │ │ ├── redis
│ │ │ │ └── Dockerfile
│ │ │ ├── solr-init
│ │ │ │ └── Dockerfile
│ │ │ └── solr
│ │ │ │ └── Dockerfile
│ │ ├── clean.ps1
│ │ ├── data
│ │ │ ├── README.md
│ │ │ ├── cd
│ │ │ │ └── .gitkeep
│ │ │ ├── cm
│ │ │ │ └── .gitkeep
│ │ │ ├── mssql
│ │ │ │ └── .gitkeep
│ │ │ └── solr
│ │ │ │ └── .gitkeep
│ │ ├── deploy
│ │ │ ├── README.md
│ │ │ └── website
│ │ │ │ └── .gitkeep
│ │ └── traefik
│ │ │ ├── README.md
│ │ │ ├── certs
│ │ │ └── .gitkeep
│ │ │ └── config
│ │ │ └── dynamic
│ │ │ └── certs_config.yaml
│ ├── init.ps1
│ ├── nuget.config
│ └── src
│ │ ├── Environment
│ │ └── Website
│ │ │ ├── Website.scproj
│ │ │ └── packages.config
│ │ ├── Feature
│ │ ├── BasicContent
│ │ │ ├── README.md
│ │ │ ├── tds
│ │ │ │ ├── core
│ │ │ │ │ ├── BasicCompany.Feature.BasicContent.Core.scproj
│ │ │ │ │ ├── packages.config
│ │ │ │ │ └── sitecore
│ │ │ │ │ │ ├── content.yml
│ │ │ │ │ │ └── content
│ │ │ │ │ │ ├── Applications.yml
│ │ │ │ │ │ └── Applications
│ │ │ │ │ │ ├── WebEdit.yml
│ │ │ │ │ │ └── WebEdit
│ │ │ │ │ │ ├── Custom Experience Buttons.yml
│ │ │ │ │ │ └── Custom Experience Buttons
│ │ │ │ │ │ ├── BasicContent.yml
│ │ │ │ │ │ └── BasicContent
│ │ │ │ │ │ ├── Hero Banner.yml
│ │ │ │ │ │ └── Promo Card.yml
│ │ │ │ └── master
│ │ │ │ │ ├── BasicCompany.Feature.BasicContent.Master.scproj
│ │ │ │ │ ├── packages.config
│ │ │ │ │ └── sitecore
│ │ │ │ │ ├── layout.yml
│ │ │ │ │ ├── layout
│ │ │ │ │ ├── Renderings.yml
│ │ │ │ │ └── Renderings
│ │ │ │ │ │ ├── Feature.yml
│ │ │ │ │ │ └── Feature
│ │ │ │ │ │ ├── BasicContent.yml
│ │ │ │ │ │ └── BasicContent
│ │ │ │ │ │ ├── Accordion Item.yml
│ │ │ │ │ │ ├── Accordion.yml
│ │ │ │ │ │ ├── Hero Banner.yml
│ │ │ │ │ │ ├── Promo Card.yml
│ │ │ │ │ │ ├── Promo Container.yml
│ │ │ │ │ │ └── Section Header.yml
│ │ │ │ │ ├── templates.yml
│ │ │ │ │ └── templates
│ │ │ │ │ ├── Feature.yml
│ │ │ │ │ └── Feature
│ │ │ │ │ ├── BasicContent.yml
│ │ │ │ │ └── BasicContent
│ │ │ │ │ ├── Accordion Item Folder.yml
│ │ │ │ │ ├── Accordion Item Folder
│ │ │ │ │ └── __Standard Values.yml
│ │ │ │ │ ├── Accordion Item.yml
│ │ │ │ │ ├── Accordion Item
│ │ │ │ │ ├── Accordion Item.yml
│ │ │ │ │ └── Accordion Item
│ │ │ │ │ │ ├── Content.yml
│ │ │ │ │ │ └── Title.yml
│ │ │ │ │ ├── Hero Banner Folder.yml
│ │ │ │ │ ├── Hero Banner Folder
│ │ │ │ │ └── __Standard Values.yml
│ │ │ │ │ ├── Hero Banner.yml
│ │ │ │ │ ├── Hero Banner
│ │ │ │ │ ├── Banner.yml
│ │ │ │ │ ├── Banner
│ │ │ │ │ │ ├── Image.yml
│ │ │ │ │ │ ├── Subtitle.yml
│ │ │ │ │ │ └── Title.yml
│ │ │ │ │ └── __Standard Values.yml
│ │ │ │ │ ├── Promo Card Folder.yml
│ │ │ │ │ ├── Promo Card Folder
│ │ │ │ │ └── __Standard Values.yml
│ │ │ │ │ ├── Promo Card.yml
│ │ │ │ │ ├── Promo Card
│ │ │ │ │ ├── Promo Card.yml
│ │ │ │ │ ├── Promo Card
│ │ │ │ │ │ ├── Headline.yml
│ │ │ │ │ │ ├── Image.yml
│ │ │ │ │ │ ├── Link.yml
│ │ │ │ │ │ └── Text.yml
│ │ │ │ │ └── __Standard Values.yml
│ │ │ │ │ ├── Section Header Folder.yml
│ │ │ │ │ ├── Section Header Folder
│ │ │ │ │ └── __Standard Values.yml
│ │ │ │ │ ├── Section Header.yml
│ │ │ │ │ └── Section Header
│ │ │ │ │ ├── Header.yml
│ │ │ │ │ ├── Header
│ │ │ │ │ └── Text.yml
│ │ │ │ │ └── __Standard Values.yml
│ │ │ └── website
│ │ │ │ ├── BasicCompany.Feature.BasicContent.csproj
│ │ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── Templates.cs
│ │ │ │ ├── Views
│ │ │ │ ├── BasicContent
│ │ │ │ │ ├── Accordion.cshtml
│ │ │ │ │ ├── AccordionItem.cshtml
│ │ │ │ │ ├── HeroBanner.cshtml
│ │ │ │ │ ├── PromoCard.cshtml
│ │ │ │ │ ├── PromoContainer.cshtml
│ │ │ │ │ └── SectionHeader.cshtml
│ │ │ │ └── web.config
│ │ │ │ ├── web.Debug.config
│ │ │ │ ├── web.Release.config
│ │ │ │ └── web.config
│ │ ├── Navigation
│ │ │ ├── README.md
│ │ │ ├── tds
│ │ │ │ └── master
│ │ │ │ │ ├── BasicCompany.Feature.Navigation.Master.scproj
│ │ │ │ │ ├── packages.config
│ │ │ │ │ └── sitecore
│ │ │ │ │ ├── layout.yml
│ │ │ │ │ ├── layout
│ │ │ │ │ ├── Renderings.yml
│ │ │ │ │ └── Renderings
│ │ │ │ │ │ ├── Feature.yml
│ │ │ │ │ │ └── Feature
│ │ │ │ │ │ ├── Navigation.yml
│ │ │ │ │ │ └── Navigation
│ │ │ │ │ │ ├── Footer.yml
│ │ │ │ │ │ └── Header.yml
│ │ │ │ │ ├── templates.yml
│ │ │ │ │ └── templates
│ │ │ │ │ ├── Feature.yml
│ │ │ │ │ └── Feature
│ │ │ │ │ ├── Navigation.yml
│ │ │ │ │ └── Navigation
│ │ │ │ │ ├── _NavigationItem.yml
│ │ │ │ │ ├── _NavigationItem
│ │ │ │ │ ├── Navigation.yml
│ │ │ │ │ ├── Navigation
│ │ │ │ │ │ └── Navigation Title.yml
│ │ │ │ │ └── __Standard Values.yml
│ │ │ │ │ ├── _NavigationRoot.yml
│ │ │ │ │ └── _NavigationRoot
│ │ │ │ │ ├── Header and Footer.yml
│ │ │ │ │ └── Header and Footer
│ │ │ │ │ ├── Footer Copyright.yml
│ │ │ │ │ └── Header Logo.yml
│ │ │ ├── tests
│ │ │ │ ├── BasicCompany.Feature.Navigation.Tests.csproj
│ │ │ │ ├── HeaderBuilderTests.cs
│ │ │ │ ├── NavigationRootResolverTests.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── app.config
│ │ │ └── website
│ │ │ │ ├── App_Config
│ │ │ │ └── Include
│ │ │ │ │ └── Feature
│ │ │ │ │ └── Feature.Navigation.config
│ │ │ │ ├── BasicCompany.Feature.Navigation.csproj
│ │ │ │ ├── Controllers
│ │ │ │ └── NavigationController.cs
│ │ │ │ ├── Models
│ │ │ │ ├── Header.cs
│ │ │ │ └── NavigationItem.cs
│ │ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── Services
│ │ │ │ ├── HeaderBuilder.cs
│ │ │ │ ├── IHeaderBuilder.cs
│ │ │ │ ├── INavigationRootResolver.cs
│ │ │ │ └── NavigationRootResolver.cs
│ │ │ │ ├── ServicesConfigurator.cs
│ │ │ │ ├── Templates.cs
│ │ │ │ ├── Views
│ │ │ │ ├── Navigation
│ │ │ │ │ ├── Footer.cshtml
│ │ │ │ │ └── Header.cshtml
│ │ │ │ └── web.config
│ │ │ │ ├── web.Debug.config
│ │ │ │ ├── web.Release.config
│ │ │ │ └── web.config
│ │ ├── Products
│ │ │ ├── README.md
│ │ │ ├── tds
│ │ │ │ └── master
│ │ │ │ │ ├── BasicCompany.Feature.Products.Master.scproj
│ │ │ │ │ ├── packages.config
│ │ │ │ │ └── sitecore
│ │ │ │ │ ├── layout.yml
│ │ │ │ │ ├── layout
│ │ │ │ │ ├── Renderings.yml
│ │ │ │ │ └── Renderings
│ │ │ │ │ │ ├── Feature.yml
│ │ │ │ │ │ └── Feature
│ │ │ │ │ │ ├── Products.yml
│ │ │ │ │ │ └── Products
│ │ │ │ │ │ ├── Product Detail Header.yml
│ │ │ │ │ │ ├── Product Detail.yml
│ │ │ │ │ │ ├── Product List.yml
│ │ │ │ │ │ └── Related Products.yml
│ │ │ │ │ ├── templates.yml
│ │ │ │ │ └── templates
│ │ │ │ │ ├── Feature.yml
│ │ │ │ │ └── Feature
│ │ │ │ │ ├── Products.yml
│ │ │ │ │ └── Products
│ │ │ │ │ ├── _Product.yml
│ │ │ │ │ └── _Product
│ │ │ │ │ ├── Product.yml
│ │ │ │ │ ├── Product
│ │ │ │ │ ├── Features.yml
│ │ │ │ │ ├── Image.yml
│ │ │ │ │ ├── Price.yml
│ │ │ │ │ ├── Related Products.yml
│ │ │ │ │ ├── Short Description.yml
│ │ │ │ │ └── Title.yml
│ │ │ │ │ └── __Standard Values.yml
│ │ │ ├── tests
│ │ │ │ ├── BasicCompany.Feature.Products.Tests.csproj
│ │ │ │ ├── ProductRepositoryTests.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── app.config
│ │ │ └── website
│ │ │ │ ├── App_Config
│ │ │ │ └── Include
│ │ │ │ │ └── Feature
│ │ │ │ │ ├── Feature.Products.ContentSearch.config
│ │ │ │ │ └── Feature.Products.config
│ │ │ │ ├── BasicCompany.Feature.Products.csproj
│ │ │ │ ├── Controllers
│ │ │ │ └── ProductsController.cs
│ │ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── Services
│ │ │ │ ├── IProductRepository.cs
│ │ │ │ ├── ProductRepository.cs
│ │ │ │ └── ProductSearchQuery.cs
│ │ │ │ ├── ServicesConfigurator.cs
│ │ │ │ ├── Templates.cs
│ │ │ │ ├── Views
│ │ │ │ ├── Products
│ │ │ │ │ ├── Detail Header.cshtml
│ │ │ │ │ ├── Detail.cshtml
│ │ │ │ │ ├── List.cshtml
│ │ │ │ │ ├── Related Products.cshtml
│ │ │ │ │ └── _ListProduct.cshtml
│ │ │ │ └── web.config
│ │ │ │ ├── web.Debug.config
│ │ │ │ ├── web.Release.config
│ │ │ │ └── web.config
│ │ └── Services
│ │ │ ├── README.md
│ │ │ ├── tds
│ │ │ ├── core
│ │ │ │ ├── BasicCompany.Feature.Services.Core.scproj
│ │ │ │ ├── packages.config
│ │ │ │ └── sitecore
│ │ │ │ │ ├── content.yml
│ │ │ │ │ └── content
│ │ │ │ │ ├── Applications.yml
│ │ │ │ │ └── Applications
│ │ │ │ │ ├── WebEdit.yml
│ │ │ │ │ └── WebEdit
│ │ │ │ │ ├── Custom Experience Buttons.yml
│ │ │ │ │ └── Custom Experience Buttons
│ │ │ │ │ ├── Services.yml
│ │ │ │ │ └── Services
│ │ │ │ │ └── Testimonial.yml
│ │ │ └── master
│ │ │ │ ├── BasicCompany.Feature.Services.Master.scproj
│ │ │ │ ├── packages.config
│ │ │ │ └── sitecore
│ │ │ │ ├── layout.yml
│ │ │ │ ├── layout
│ │ │ │ ├── Renderings.yml
│ │ │ │ └── Renderings
│ │ │ │ │ ├── Feature.yml
│ │ │ │ │ └── Feature
│ │ │ │ │ ├── Services.yml
│ │ │ │ │ └── Services
│ │ │ │ │ ├── Testimonial Container.yml
│ │ │ │ │ └── Testimonial.yml
│ │ │ │ ├── templates.yml
│ │ │ │ └── templates
│ │ │ │ ├── Feature.yml
│ │ │ │ └── Feature
│ │ │ │ ├── Services.yml
│ │ │ │ └── Services
│ │ │ │ ├── Testimonial Folder.yml
│ │ │ │ ├── Testimonial Folder
│ │ │ │ └── __Standard Values.yml
│ │ │ │ ├── Testimonial.yml
│ │ │ │ └── Testimonial
│ │ │ │ ├── Testimonial.yml
│ │ │ │ └── Testimonial
│ │ │ │ ├── Image.yml
│ │ │ │ ├── Quote.yml
│ │ │ │ └── Title.yml
│ │ │ └── website
│ │ │ ├── BasicCompany.Feature.Services.csproj
│ │ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ │ ├── Templates.cs
│ │ │ ├── Views
│ │ │ ├── Services
│ │ │ │ ├── Testimonial.cshtml
│ │ │ │ └── TestimonialContainer.cshtml
│ │ │ └── web.config
│ │ │ ├── web.Debug.config
│ │ │ ├── web.Release.config
│ │ │ └── web.config
│ │ ├── Foundation
│ │ ├── FieldRendering
│ │ │ ├── README.md
│ │ │ └── website
│ │ │ │ ├── BasicCompany.Foundation.FieldRendering.csproj
│ │ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── SitecoreHelperExtensions.cs
│ │ │ │ ├── Views
│ │ │ │ └── Web.config.xdt
│ │ │ │ ├── web.Debug.config
│ │ │ │ ├── web.Release.config
│ │ │ │ └── web.config
│ │ └── Multisite
│ │ │ ├── README.md
│ │ │ ├── tds
│ │ │ └── master
│ │ │ │ ├── BasicCompany.Foundation.Multisite.Master.scproj
│ │ │ │ ├── packages.config
│ │ │ │ └── sitecore
│ │ │ │ ├── templates.yml
│ │ │ │ └── templates
│ │ │ │ ├── Foundation.yml
│ │ │ │ └── Foundation
│ │ │ │ ├── Multisite.yml
│ │ │ │ └── Multisite
│ │ │ │ └── Site.yml
│ │ │ └── website
│ │ │ ├── BasicCompany.Foundation.Multisite.csproj
│ │ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ │ ├── web.Debug.config
│ │ │ ├── web.Release.config
│ │ │ └── web.config
│ │ └── Project
│ │ └── BasicCompany
│ │ ├── README.md
│ │ ├── tds
│ │ └── master
│ │ │ ├── BasicCompany.Project.BasicCompany.Master.scproj
│ │ │ ├── packages.config
│ │ │ └── sitecore
│ │ │ ├── content.yml
│ │ │ ├── content
│ │ │ ├── Basic Company.yml
│ │ │ └── Basic Company
│ │ │ │ ├── Dictionary.yml
│ │ │ │ ├── Dictionary
│ │ │ │ ├── Products-Detail-Price.yml
│ │ │ │ └── Products-RelatedProducts-Title.yml
│ │ │ │ ├── Home.yml
│ │ │ │ ├── Home
│ │ │ │ ├── Page Components.yml
│ │ │ │ ├── Page Components
│ │ │ │ │ ├── Hero Banner.yml
│ │ │ │ │ └── Section Header.yml
│ │ │ │ ├── Products.yml
│ │ │ │ ├── Products
│ │ │ │ │ ├── 2019
│ │ │ │ │ │ ├── 05.yml
│ │ │ │ │ │ └── 05
│ │ │ │ │ │ │ ├── 03.yml
│ │ │ │ │ │ │ └── 03
│ │ │ │ │ │ │ ├── 16
│ │ │ │ │ │ │ ├── 40
│ │ │ │ │ │ │ │ ├── Ante condimentum tempor dictum.yml
│ │ │ │ │ │ │ │ ├── Molestie et faucibus vel.yml
│ │ │ │ │ │ │ │ └── Ut praesent litora.yml
│ │ │ │ │ │ │ ├── 41
│ │ │ │ │ │ │ │ ├── Ac vivamus quam.yml
│ │ │ │ │ │ │ │ ├── At potenti morbi.yml
│ │ │ │ │ │ │ │ ├── Condimentum metus viverra ipsum.yml
│ │ │ │ │ │ │ │ ├── Curae sociosqu.yml
│ │ │ │ │ │ │ │ ├── Euismod semper quisque mollis.yml
│ │ │ │ │ │ │ │ ├── Feugiat torquent non.yml
│ │ │ │ │ │ │ │ ├── Interdum ut metus.yml
│ │ │ │ │ │ │ │ ├── Maecenas nam.yml
│ │ │ │ │ │ │ │ ├── Placerat mi nunc.yml
│ │ │ │ │ │ │ │ ├── Quam eros hac.yml
│ │ │ │ │ │ │ │ ├── Scelerisque ornare.yml
│ │ │ │ │ │ │ │ ├── Sociosqu fermentum eget lorem.yml
│ │ │ │ │ │ │ │ ├── Sollicitudin suspendisse.yml
│ │ │ │ │ │ │ │ ├── Tempor duis sociosqu.yml
│ │ │ │ │ │ │ │ ├── Turpis volutpat convallis.yml
│ │ │ │ │ │ │ │ ├── Ullamcorper varius.yml
│ │ │ │ │ │ │ │ └── Ut nullam.yml
│ │ │ │ │ │ │ ├── 40.yml
│ │ │ │ │ │ │ └── 41.yml
│ │ │ │ │ │ │ └── 16.yml
│ │ │ │ │ ├── 2019.yml
│ │ │ │ │ ├── Page Components.yml
│ │ │ │ │ └── Page Components
│ │ │ │ │ │ └── Product List Hero.yml
│ │ │ │ ├── Services.yml
│ │ │ │ └── Services
│ │ │ │ │ ├── Page Components.yml
│ │ │ │ │ └── Page Components
│ │ │ │ │ ├── FAQ Dolor.yml
│ │ │ │ │ ├── FAQ Ipsum.yml
│ │ │ │ │ ├── FAQ Lorem.yml
│ │ │ │ │ ├── FAQ Sit.yml
│ │ │ │ │ ├── Frequently Asked Questions.yml
│ │ │ │ │ ├── Services.yml
│ │ │ │ │ ├── Testimonial Dolor.yml
│ │ │ │ │ ├── Testimonial Ipsum.yml
│ │ │ │ │ ├── Testimonial Lorem.yml
│ │ │ │ │ └── Testimonial Sit.yml
│ │ │ │ ├── Shared Content.yml
│ │ │ │ └── Shared Content
│ │ │ │ ├── Accordion Items.yml
│ │ │ │ ├── Hero Banners.yml
│ │ │ │ ├── Promo Cards.yml
│ │ │ │ ├── Promo Cards
│ │ │ │ ├── Dolor Sit.yml
│ │ │ │ ├── Etiam ultricies.yml
│ │ │ │ ├── Lorem Ipsum.yml
│ │ │ │ ├── Nullam vel.yml
│ │ │ │ └── Nunc nulla.yml
│ │ │ │ ├── Section Headers.yml
│ │ │ │ └── Testimonials.yml
│ │ │ ├── layout.yml
│ │ │ ├── layout
│ │ │ ├── Layouts.yml
│ │ │ ├── Layouts
│ │ │ │ ├── Project.yml
│ │ │ │ └── Project
│ │ │ │ │ ├── BasicCompany.yml
│ │ │ │ │ └── BasicCompany
│ │ │ │ │ └── Default.yml
│ │ │ ├── Placeholder Settings.yml
│ │ │ ├── Placeholder Settings
│ │ │ │ ├── Project.yml
│ │ │ │ └── Project
│ │ │ │ │ ├── BasicCompany.yml
│ │ │ │ │ └── BasicCompany
│ │ │ │ │ ├── Accordion.yml
│ │ │ │ │ ├── Main Layout.yml
│ │ │ │ │ ├── Product Detail Page.yml
│ │ │ │ │ ├── Product List Page.yml
│ │ │ │ │ ├── Promo Container.yml
│ │ │ │ │ ├── Services Page.yml
│ │ │ │ │ └── Testimonial Container.yml
│ │ │ ├── Renderings.yml
│ │ │ └── Renderings
│ │ │ │ ├── Project.yml
│ │ │ │ └── Project
│ │ │ │ └── BasicCompany.yml
│ │ │ ├── media library.yml
│ │ │ ├── media library
│ │ │ ├── Basic Company.yml
│ │ │ └── Basic Company
│ │ │ │ ├── faq-1.yml
│ │ │ │ ├── helix logo.yml
│ │ │ │ ├── hero home.yml
│ │ │ │ ├── hero-products.yml
│ │ │ │ ├── product.yml
│ │ │ │ ├── promo-card-1.yml
│ │ │ │ ├── promo-card-2.yml
│ │ │ │ ├── promo-card-3.yml
│ │ │ │ ├── promo-card-4.yml
│ │ │ │ ├── promo-card-5.yml
│ │ │ │ ├── testimonial-1.yml
│ │ │ │ └── testimonial-2.yml
│ │ │ ├── system.yml
│ │ │ ├── system
│ │ │ ├── Settings.yml
│ │ │ └── Settings
│ │ │ │ ├── Rules.yml
│ │ │ │ └── Rules
│ │ │ │ ├── Insert Options.yml
│ │ │ │ └── Insert Options
│ │ │ │ ├── Rules.yml
│ │ │ │ └── Rules
│ │ │ │ └── BasicCompany Site Root.yml
│ │ │ ├── templates.yml
│ │ │ └── templates
│ │ │ ├── Branches.yml
│ │ │ ├── Branches
│ │ │ ├── Project.yml
│ │ │ └── Project
│ │ │ │ ├── BasicCompany.yml
│ │ │ │ └── BasicCompany
│ │ │ │ ├── Home Page.yml
│ │ │ │ ├── Home Page
│ │ │ │ ├── %24name.yml
│ │ │ │ └── %24name
│ │ │ │ │ └── Page Components.yml
│ │ │ │ ├── Product List Page.yml
│ │ │ │ ├── Product List Page
│ │ │ │ ├── %24name.yml
│ │ │ │ └── %24name
│ │ │ │ │ └── Page Components.yml
│ │ │ │ ├── Services Page.yml
│ │ │ │ └── Services Page
│ │ │ │ ├── %24name.yml
│ │ │ │ └── %24name
│ │ │ │ └── Page Components.yml
│ │ │ ├── Project.yml
│ │ │ └── Project
│ │ │ ├── BasicCompany.yml
│ │ │ └── BasicCompany
│ │ │ ├── Folder Types.yml
│ │ │ ├── Folder Types
│ │ │ ├── Page Component Folder.yml
│ │ │ └── Page Component Folder
│ │ │ │ └── __Standard Values.yml
│ │ │ ├── Page Types.yml
│ │ │ └── Page Types
│ │ │ ├── Home Page.yml
│ │ │ ├── Home Page
│ │ │ └── __Standard Values.yml
│ │ │ ├── Page.yml
│ │ │ ├── Page
│ │ │ └── __Standard Values.yml
│ │ │ ├── Product Detail Page.yml
│ │ │ ├── Product Detail Page
│ │ │ └── __Standard Values.yml
│ │ │ ├── Product List Page.yml
│ │ │ ├── Product List Page
│ │ │ └── __Standard Values.yml
│ │ │ ├── Services Page.yml
│ │ │ └── Services Page
│ │ │ └── __Standard Values.yml
│ │ └── website
│ │ ├── App_Config
│ │ └── Include
│ │ │ └── Project
│ │ │ └── Project.BasicCompany.config
│ │ ├── BasicCompany.Project.BasicCompany.csproj
│ │ ├── Properties
│ │ └── AssemblyInfo.cs
│ │ ├── Views
│ │ ├── BasicCompany
│ │ │ └── Layouts
│ │ │ │ └── Default.cshtml
│ │ └── web.config
│ │ ├── css
│ │ └── basic-company.css
│ │ ├── js
│ │ └── basic-company.js
│ │ ├── web.Debug.config
│ │ ├── web.Release.config
│ │ └── web.config
└── helix-basic-unicorn
│ ├── .dockerignore
│ ├── .env
│ ├── .gitignore
│ ├── BasicCompany.sln
│ ├── Directory.Build.targets
│ ├── Dockerfile
│ ├── Packages.props
│ ├── README.md
│ ├── docker-compose.override.yml
│ ├── docker-compose.yml
│ ├── docker
│ ├── .gitignore
│ ├── README.md
│ ├── build
│ │ ├── README.md
│ │ ├── cd
│ │ │ └── Dockerfile
│ │ ├── cm
│ │ │ ├── Dockerfile
│ │ │ └── unicorn
│ │ │ │ ├── MicroCHAP.dll
│ │ │ │ ├── Unicorn.psm1
│ │ │ │ └── sync.ps1
│ │ ├── id
│ │ │ └── Dockerfile
│ │ ├── mssql
│ │ │ └── Dockerfile
│ │ ├── redis
│ │ │ └── Dockerfile
│ │ ├── solr-init
│ │ │ └── Dockerfile
│ │ └── solr
│ │ │ └── Dockerfile
│ ├── clean.ps1
│ ├── data
│ │ ├── README.md
│ │ ├── cd
│ │ │ └── .gitkeep
│ │ ├── cm
│ │ │ └── .gitkeep
│ │ ├── mssql
│ │ │ └── .gitkeep
│ │ └── solr
│ │ │ └── .gitkeep
│ ├── deploy
│ │ ├── README.md
│ │ └── website
│ │ │ └── .gitkeep
│ └── traefik
│ │ ├── README.md
│ │ ├── certs
│ │ └── .gitkeep
│ │ └── config
│ │ └── dynamic
│ │ └── certs_config.yaml
│ ├── init.ps1
│ ├── nuget.config
│ └── src
│ ├── Environment
│ └── Website
│ │ ├── Directory.Build.props
│ │ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ └── PublishProfiles
│ │ │ └── Local.pubxml
│ │ ├── README.md
│ │ ├── Website.csproj
│ │ └── Website.wpp.targets
│ ├── Feature
│ ├── BasicContent
│ │ ├── README.md
│ │ ├── serialization
│ │ │ ├── buttons
│ │ │ │ ├── BasicContent.yml
│ │ │ │ └── BasicContent
│ │ │ │ │ ├── Hero Banner.yml
│ │ │ │ │ └── Promo Card.yml
│ │ │ ├── renderings
│ │ │ │ ├── BasicContent.yml
│ │ │ │ └── BasicContent
│ │ │ │ │ ├── Accordion Item.yml
│ │ │ │ │ ├── Accordion.yml
│ │ │ │ │ ├── Hero Banner.yml
│ │ │ │ │ ├── Promo Card.yml
│ │ │ │ │ ├── Promo Container.yml
│ │ │ │ │ └── Section Header.yml
│ │ │ └── templates
│ │ │ │ ├── BasicContent.yml
│ │ │ │ └── BasicContent
│ │ │ │ ├── Accordion Item Folder.yml
│ │ │ │ ├── Accordion Item Folder
│ │ │ │ └── __Standard Values.yml
│ │ │ │ ├── Accordion Item.yml
│ │ │ │ ├── Accordion Item
│ │ │ │ ├── Accordion Item.yml
│ │ │ │ └── Accordion Item
│ │ │ │ │ ├── Content.yml
│ │ │ │ │ └── Title.yml
│ │ │ │ ├── Hero Banner Folder.yml
│ │ │ │ ├── Hero Banner Folder
│ │ │ │ └── __Standard Values.yml
│ │ │ │ ├── Hero Banner.yml
│ │ │ │ ├── Hero Banner
│ │ │ │ ├── Banner.yml
│ │ │ │ ├── Banner
│ │ │ │ │ ├── Image.yml
│ │ │ │ │ ├── Subtitle.yml
│ │ │ │ │ └── Title.yml
│ │ │ │ └── __Standard Values.yml
│ │ │ │ ├── Promo Card Folder.yml
│ │ │ │ ├── Promo Card Folder
│ │ │ │ └── __Standard Values.yml
│ │ │ │ ├── Promo Card.yml
│ │ │ │ ├── Promo Card
│ │ │ │ ├── Promo Card.yml
│ │ │ │ ├── Promo Card
│ │ │ │ │ ├── Headline.yml
│ │ │ │ │ ├── Image.yml
│ │ │ │ │ ├── Link.yml
│ │ │ │ │ └── Text.yml
│ │ │ │ └── __Standard Values.yml
│ │ │ │ ├── Section Header Folder.yml
│ │ │ │ ├── Section Header Folder
│ │ │ │ └── __Standard Values.yml
│ │ │ │ ├── Section Header.yml
│ │ │ │ └── Section Header
│ │ │ │ ├── Header.yml
│ │ │ │ ├── Header
│ │ │ │ └── Text.yml
│ │ │ │ └── __Standard Values.yml
│ │ └── website
│ │ │ ├── App_Config
│ │ │ └── Include
│ │ │ │ └── Feature
│ │ │ │ └── Feature.BasicContent.Serialization.config
│ │ │ ├── BasicCompany.Feature.BasicContent.csproj
│ │ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ │ ├── Templates.cs
│ │ │ ├── Views
│ │ │ ├── BasicContent
│ │ │ │ ├── Accordion.cshtml
│ │ │ │ ├── AccordionItem.cshtml
│ │ │ │ ├── HeroBanner.cshtml
│ │ │ │ ├── PromoCard.cshtml
│ │ │ │ ├── PromoContainer.cshtml
│ │ │ │ └── SectionHeader.cshtml
│ │ │ └── web.config
│ │ │ ├── web.Debug.config
│ │ │ ├── web.Release.config
│ │ │ └── web.config
│ ├── Navigation
│ │ ├── README.md
│ │ ├── serialization
│ │ │ ├── renderings
│ │ │ │ ├── Navigation.yml
│ │ │ │ └── Navigation
│ │ │ │ │ ├── Footer.yml
│ │ │ │ │ └── Header.yml
│ │ │ └── templates
│ │ │ │ ├── Navigation.yml
│ │ │ │ └── Navigation
│ │ │ │ ├── _NavigationItem.yml
│ │ │ │ ├── _NavigationItem
│ │ │ │ ├── Navigation.yml
│ │ │ │ ├── Navigation
│ │ │ │ │ └── Navigation Title.yml
│ │ │ │ └── __Standard Values.yml
│ │ │ │ ├── _NavigationRoot.yml
│ │ │ │ └── _NavigationRoot
│ │ │ │ ├── Header and Footer.yml
│ │ │ │ └── Header and Footer
│ │ │ │ ├── Footer Copyright.yml
│ │ │ │ └── Header Logo.yml
│ │ ├── tests
│ │ │ ├── BasicCompany.Feature.Navigation.Tests.csproj
│ │ │ ├── HeaderBuilderTests.cs
│ │ │ ├── NavigationRootResolverTests.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── app.config
│ │ └── website
│ │ │ ├── App_Config
│ │ │ └── Include
│ │ │ │ └── Feature
│ │ │ │ ├── Feature.Navigation.Serialization.config
│ │ │ │ └── Feature.Navigation.config
│ │ │ ├── BasicCompany.Feature.Navigation.csproj
│ │ │ ├── Controllers
│ │ │ └── NavigationController.cs
│ │ │ ├── Models
│ │ │ ├── Header.cs
│ │ │ └── NavigationItem.cs
│ │ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ │ ├── Services
│ │ │ ├── HeaderBuilder.cs
│ │ │ ├── IHeaderBuilder.cs
│ │ │ ├── INavigationRootResolver.cs
│ │ │ └── NavigationRootResolver.cs
│ │ │ ├── ServicesConfigurator.cs
│ │ │ ├── Templates.cs
│ │ │ ├── Views
│ │ │ ├── Navigation
│ │ │ │ ├── Footer.cshtml
│ │ │ │ └── Header.cshtml
│ │ │ └── web.config
│ │ │ ├── web.Debug.config
│ │ │ ├── web.Release.config
│ │ │ └── web.config
│ ├── Products
│ │ ├── README.md
│ │ ├── serialization
│ │ │ ├── renderings
│ │ │ │ ├── Products.yml
│ │ │ │ └── Products
│ │ │ │ │ ├── Product Detail Header.yml
│ │ │ │ │ ├── Product Detail.yml
│ │ │ │ │ ├── Product List.yml
│ │ │ │ │ └── Related Products.yml
│ │ │ └── templates
│ │ │ │ ├── Products.yml
│ │ │ │ └── Products
│ │ │ │ ├── _Product.yml
│ │ │ │ └── _Product
│ │ │ │ ├── Product.yml
│ │ │ │ ├── Product
│ │ │ │ ├── Features.yml
│ │ │ │ ├── Image.yml
│ │ │ │ ├── Price.yml
│ │ │ │ ├── Related Products.yml
│ │ │ │ ├── Short Description.yml
│ │ │ │ └── Title.yml
│ │ │ │ └── __Standard Values.yml
│ │ ├── tests
│ │ │ ├── BasicCompany.Feature.Products.Tests.csproj
│ │ │ ├── ProductRepositoryTests.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── app.config
│ │ └── website
│ │ │ ├── App_Config
│ │ │ └── Include
│ │ │ │ └── Feature
│ │ │ │ ├── Feature.Products.ContentSearch.config
│ │ │ │ ├── Feature.Products.Serialization.config
│ │ │ │ └── Feature.Products.config
│ │ │ ├── BasicCompany.Feature.Products.csproj
│ │ │ ├── Controllers
│ │ │ └── ProductsController.cs
│ │ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ │ ├── Services
│ │ │ ├── IProductRepository.cs
│ │ │ ├── ProductRepository.cs
│ │ │ └── ProductSearchQuery.cs
│ │ │ ├── ServicesConfigurator.cs
│ │ │ ├── Templates.cs
│ │ │ ├── Views
│ │ │ ├── Products
│ │ │ │ ├── Detail Header.cshtml
│ │ │ │ ├── Detail.cshtml
│ │ │ │ ├── List.cshtml
│ │ │ │ ├── Related Products.cshtml
│ │ │ │ └── _ListProduct.cshtml
│ │ │ └── web.config
│ │ │ ├── web.Debug.config
│ │ │ ├── web.Release.config
│ │ │ └── web.config
│ └── Services
│ │ ├── README.md
│ │ ├── serialization
│ │ ├── buttons
│ │ │ ├── Services.yml
│ │ │ └── Services
│ │ │ │ └── Testimonial.yml
│ │ ├── renderings
│ │ │ ├── Services.yml
│ │ │ └── Services
│ │ │ │ ├── Testimonial Container.yml
│ │ │ │ └── Testimonial.yml
│ │ └── templates
│ │ │ ├── Services.yml
│ │ │ └── Services
│ │ │ ├── Testimonial Folder.yml
│ │ │ ├── Testimonial Folder
│ │ │ └── __Standard Values.yml
│ │ │ ├── Testimonial.yml
│ │ │ └── Testimonial
│ │ │ ├── Testimonial.yml
│ │ │ └── Testimonial
│ │ │ ├── Image.yml
│ │ │ ├── Quote.yml
│ │ │ └── Title.yml
│ │ └── website
│ │ ├── App_Config
│ │ └── Include
│ │ │ └── Feature
│ │ │ └── Feature.Services.Serialization.config
│ │ ├── BasicCompany.Feature.Services.csproj
│ │ ├── Properties
│ │ └── AssemblyInfo.cs
│ │ ├── Templates.cs
│ │ ├── Views
│ │ ├── Services
│ │ │ ├── Testimonial.cshtml
│ │ │ └── TestimonialContainer.cshtml
│ │ └── web.config
│ │ ├── web.Debug.config
│ │ ├── web.Release.config
│ │ └── web.config
│ ├── Foundation
│ ├── FieldRendering
│ │ ├── README.md
│ │ └── website
│ │ │ ├── BasicCompany.Foundation.FieldRendering.csproj
│ │ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ │ ├── SitecoreHelperExtensions.cs
│ │ │ ├── Views
│ │ │ └── Web.config.xdt
│ │ │ ├── web.Debug.config
│ │ │ ├── web.Release.config
│ │ │ └── web.config
│ ├── Multisite
│ │ ├── README.md
│ │ ├── serialization
│ │ │ └── templates
│ │ │ │ ├── Multisite.yml
│ │ │ │ └── Multisite
│ │ │ │ └── Site.yml
│ │ └── website
│ │ │ ├── App_Config
│ │ │ └── Include
│ │ │ │ └── Foundation
│ │ │ │ ├── Foundation.Multisite.Serialization.config
│ │ │ │ └── Foundation.Multisite.config
│ │ │ ├── BasicCompany.Foundation.Multisite.csproj
│ │ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ │ ├── web.Debug.config
│ │ │ ├── web.Release.config
│ │ │ └── web.config
│ └── Serialization
│ │ ├── README.md
│ │ ├── serialization
│ │ ├── renderings
│ │ │ └── Serialization.yml
│ │ └── templates
│ │ │ └── Serialization.yml
│ │ └── website
│ │ ├── App_Config
│ │ ├── Include
│ │ │ ├── Foundation
│ │ │ │ ├── Foundation.Serialization.Base.config
│ │ │ │ └── Foundation.Serialization.config
│ │ │ ├── Rainbow.config
│ │ │ └── Unicorn
│ │ │ │ ├── Unicorn.AutoPublish.config
│ │ │ │ ├── Unicorn.Configs.Default.Roles.config.example
│ │ │ │ ├── Unicorn.Configs.Default.Users.config.example
│ │ │ │ ├── Unicorn.Configs.Default.example
│ │ │ │ ├── Unicorn.Configs.Dependency.config.example
│ │ │ │ ├── Unicorn.Configs.NewItemsOnly.example
│ │ │ │ ├── Unicorn.CustomSerializationFolder.config.example
│ │ │ │ ├── Unicorn.DataProvider.10.1.config
│ │ │ │ ├── Unicorn.DataProvider.config.disabled
│ │ │ │ ├── Unicorn.Dilithium.config.example
│ │ │ │ ├── Unicorn.PowerShell.config
│ │ │ │ ├── Unicorn.Remote.config.disabled
│ │ │ │ ├── Unicorn.Roles.DataProvider.config
│ │ │ │ ├── Unicorn.Roles.config
│ │ │ │ ├── Unicorn.UI.DeployedContentEditorWarnings.config.disabled
│ │ │ │ ├── Unicorn.UI.IdentityServer.config
│ │ │ │ ├── Unicorn.UI.config
│ │ │ │ ├── Unicorn.Users.DataProvider.config
│ │ │ │ ├── Unicorn.Users.config
│ │ │ │ ├── Unicorn.config
│ │ │ │ └── Unicorn.zSharedSecret.config.example
│ │ └── Layers.config.xdt
│ │ ├── BasicCompany.Foundation.Serialization.csproj
│ │ ├── Properties
│ │ └── AssemblyInfo.cs
│ │ ├── web.Debug.config
│ │ ├── web.Release.config
│ │ └── web.config
│ └── Project
│ └── BasicCompany
│ ├── README.md
│ ├── serialization
│ ├── branches
│ │ ├── BasicCompany.yml
│ │ └── BasicCompany
│ │ │ ├── Home Page.yml
│ │ │ ├── Home Page
│ │ │ ├── _name.yml
│ │ │ └── _name
│ │ │ │ └── Page Components.yml
│ │ │ ├── Product List Page.yml
│ │ │ ├── Product List Page
│ │ │ ├── _name.yml
│ │ │ └── _name
│ │ │ │ └── Page Components.yml
│ │ │ ├── Services Page.yml
│ │ │ └── Services Page
│ │ │ ├── _name.yml
│ │ │ └── _name
│ │ │ └── Page Components.yml
│ ├── content
│ │ ├── Basic Company.yml
│ │ └── Basic Company
│ │ │ ├── Dictionary.yml
│ │ │ ├── Dictionary
│ │ │ ├── Products-Detail-Price.yml
│ │ │ └── Products-RelatedProducts-Title.yml
│ │ │ ├── Home.yml
│ │ │ ├── Home
│ │ │ ├── Page Components.yml
│ │ │ ├── Page Components
│ │ │ │ ├── Hero Banner.yml
│ │ │ │ └── Section Header.yml
│ │ │ ├── Products.yml
│ │ │ ├── Products
│ │ │ │ ├── 2019
│ │ │ │ │ ├── 05.yml
│ │ │ │ │ └── 05
│ │ │ │ │ │ ├── 03.yml
│ │ │ │ │ │ └── 03
│ │ │ │ │ │ ├── 16
│ │ │ │ │ │ ├── 40
│ │ │ │ │ │ │ ├── Ante condimentum tempor dictum.yml
│ │ │ │ │ │ │ ├── Molestie et faucibus vel.yml
│ │ │ │ │ │ │ └── Ut praesent litora.yml
│ │ │ │ │ │ ├── 41
│ │ │ │ │ │ │ ├── Ac vivamus quam.yml
│ │ │ │ │ │ │ ├── At potenti morbi.yml
│ │ │ │ │ │ │ ├── Condimentum metus viverra ipsum.yml
│ │ │ │ │ │ │ ├── Curae sociosqu.yml
│ │ │ │ │ │ │ ├── Euismod semper quisque mollis.yml
│ │ │ │ │ │ │ ├── Feugiat torquent non.yml
│ │ │ │ │ │ │ ├── Interdum ut metus.yml
│ │ │ │ │ │ │ ├── Maecenas nam.yml
│ │ │ │ │ │ │ ├── Placerat mi nunc.yml
│ │ │ │ │ │ │ ├── Quam eros hac.yml
│ │ │ │ │ │ │ ├── Scelerisque ornare.yml
│ │ │ │ │ │ │ ├── Sociosqu fermentum eget lorem.yml
│ │ │ │ │ │ │ ├── Sollicitudin suspendisse.yml
│ │ │ │ │ │ │ ├── Tempor duis sociosqu.yml
│ │ │ │ │ │ │ ├── Turpis volutpat convallis.yml
│ │ │ │ │ │ │ ├── Ullamcorper varius.yml
│ │ │ │ │ │ │ └── Ut nullam.yml
│ │ │ │ │ │ ├── 40.yml
│ │ │ │ │ │ └── 41.yml
│ │ │ │ │ │ └── 16.yml
│ │ │ │ ├── 2019.yml
│ │ │ │ ├── Page Components.yml
│ │ │ │ └── Page Components
│ │ │ │ │ └── Product List Hero.yml
│ │ │ ├── Services.yml
│ │ │ └── Services
│ │ │ │ ├── Page Components.yml
│ │ │ │ └── Page Components
│ │ │ │ ├── FAQ Dolor.yml
│ │ │ │ ├── FAQ Ipsum.yml
│ │ │ │ ├── FAQ Lorem.yml
│ │ │ │ ├── FAQ Sit.yml
│ │ │ │ ├── Frequently Asked Questions.yml
│ │ │ │ ├── Services.yml
│ │ │ │ ├── Testimonial Dolor.yml
│ │ │ │ ├── Testimonial Ipsum.yml
│ │ │ │ ├── Testimonial Lorem.yml
│ │ │ │ └── Testimonial Sit.yml
│ │ │ ├── Shared Content.yml
│ │ │ └── Shared Content
│ │ │ ├── Accordion Items.yml
│ │ │ ├── Hero Banners.yml
│ │ │ ├── Promo Cards.yml
│ │ │ ├── Promo Cards
│ │ │ ├── Dolor Sit.yml
│ │ │ ├── Etiam ultricies.yml
│ │ │ ├── Lorem Ipsum.yml
│ │ │ ├── Nullam vel.yml
│ │ │ └── Nunc nulla.yml
│ │ │ ├── Section Headers.yml
│ │ │ └── Testimonials.yml
│ ├── layouts
│ │ ├── BasicCompany.yml
│ │ └── BasicCompany
│ │ │ └── Default.yml
│ ├── media
│ │ ├── Basic Company.yml
│ │ └── Basic Company
│ │ │ ├── faq-1.yml
│ │ │ ├── helix logo.yml
│ │ │ ├── hero home.yml
│ │ │ ├── hero-products.yml
│ │ │ ├── product.yml
│ │ │ ├── promo-card-1.yml
│ │ │ ├── promo-card-2.yml
│ │ │ ├── promo-card-3.yml
│ │ │ ├── promo-card-4.yml
│ │ │ ├── promo-card-5.yml
│ │ │ ├── testimonial-1.yml
│ │ │ └── testimonial-2.yml
│ ├── placeholders
│ │ ├── BasicCompany.yml
│ │ └── BasicCompany
│ │ │ ├── Accordion.yml
│ │ │ ├── Main Layout.yml
│ │ │ ├── Product Detail Page.yml
│ │ │ ├── Product List Page.yml
│ │ │ ├── Promo Container.yml
│ │ │ ├── Services Page.yml
│ │ │ └── Testimonial Container.yml
│ ├── renderings
│ │ └── BasicCompany.yml
│ ├── siteroot-insertrule
│ │ └── BasicCompany Site Root.yml
│ └── templates
│ │ ├── BasicCompany.yml
│ │ └── BasicCompany
│ │ ├── Folder Types.yml
│ │ ├── Folder Types
│ │ ├── Page Component Folder.yml
│ │ └── Page Component Folder
│ │ │ └── __Standard Values.yml
│ │ ├── Page Types.yml
│ │ └── Page Types
│ │ ├── Home Page.yml
│ │ ├── Home Page
│ │ └── __Standard Values.yml
│ │ ├── Page.yml
│ │ ├── Page
│ │ └── __Standard Values.yml
│ │ ├── Product Detail Page.yml
│ │ ├── Product Detail Page
│ │ └── __Standard Values.yml
│ │ ├── Product List Page.yml
│ │ ├── Product List Page
│ │ └── __Standard Values.yml
│ │ ├── Services Page.yml
│ │ └── Services Page
│ │ └── __Standard Values.yml
│ └── website
│ ├── App_Config
│ └── Include
│ │ └── Project
│ │ ├── Project.BasicCompany.Serialization.config
│ │ └── Project.BasicCompany.config
│ ├── BasicCompany.Project.BasicCompany.csproj
│ ├── Properties
│ └── AssemblyInfo.cs
│ ├── Views
│ ├── BasicCompany
│ │ └── Layouts
│ │ │ └── Default.cshtml
│ └── web.config
│ ├── css
│ └── basic-company.css
│ ├── js
│ └── basic-company.js
│ ├── web.Debug.config
│ ├── web.Release.config
│ └── web.config
└── frontend-templates
└── basic-company
├── .babelrc
├── .gitignore
├── LICENSE
├── README.md
├── _javascript
└── main.js
├── _sass
├── accordion.scss
├── card.scss
├── footer.scss
├── hero.scss
├── main.scss
├── navbar.scss
├── productdetail.scss
├── productlist.scss
├── promocard.scss
├── services.scss
└── title.scss
├── bulma-start.png
├── css
└── main.css
├── image-credit.txt
├── images
├── basiccompany-product.png
├── faq-1.jpg
├── helix-logo-white.png
├── hero-home.jpg
├── hero-products.jpg
├── promo-card-1.jpg
├── promo-card-2.jpg
├── promo-card-3.jpg
├── promo-card-4.jpg
├── promo-card-5.jpg
├── testimonial-1.jpg
└── testimonial-2.jpg
├── index.html
├── lib
└── main.js
├── made-with-bulma.png
├── package-lock.json
├── package.json
├── product-detail.html
├── product-list.html
└── services.html
/docs/.gitignore:
--------------------------------------------------------------------------------
1 | _site
2 | .sass-cache
--------------------------------------------------------------------------------
/docs/_config.yml:
--------------------------------------------------------------------------------
1 | title: Sitecore Helix Examples
2 | remote_theme: chrisrhymes/bulma-clean-theme
3 |
4 | #
5 | # Local Testing / Preview
6 | #
7 | # Install - https://rubyinstaller.org/downloads/
8 | # Run - gem install github-pages
9 | # Run - gem install bulma-clean-theme
10 | # Uncomment below
11 | # theme: bulma-clean-theme
12 | # Run - jekyll build
13 | # Run - jekyll serve
--------------------------------------------------------------------------------
/docs/_data/navigation.yml:
--------------------------------------------------------------------------------
1 | - name: Installation
2 | link: /install.html
3 | - name: About the Examples
4 | link: /examples/helix-basic-company.html
5 |
--------------------------------------------------------------------------------
/docs/assets/css/app.scss:
--------------------------------------------------------------------------------
1 | ---
2 | ---
3 | $primary: #333333;
4 | // Import Main CSS file from theme
5 | @import "main";
6 |
7 | .navbar-brand {
8 | margin-right: 15px;
9 |
10 | .navbar-item {
11 | background-color: red;
12 | }
13 | }
14 |
15 | a.navbar-item:hover {
16 | background-color: unset !important;
17 | }
18 |
19 | a.navbar-item.is-active {
20 | background-color: unset !important;
21 | text-decoration: underline;
22 | }
23 |
24 | .navbar-dropdown a.navbar-item.is-active {
25 | color: #000 !important;
26 | text-decoration: underline;
27 | }
28 |
29 | .content ul {
30 | margin-top: unset;
31 | }
--------------------------------------------------------------------------------
/examples/helix-basic-aspnetcore/.config/dotnet-tools.json:
--------------------------------------------------------------------------------
1 | {
2 | "version": 1,
3 | "isRoot": true,
4 | "tools": {
5 | "sitecore.cli": {
6 | "version": "4.0.0",
7 | "commands": [
8 | "sitecore"
9 | ]
10 | }
11 | }
12 | }
--------------------------------------------------------------------------------
/examples/helix-basic-aspnetcore/.dockerignore:
--------------------------------------------------------------------------------
1 | # folders
2 | .git
3 | .gitignore
4 | .vs
5 | .vscode
6 | build
7 | docker
8 | packages
9 | **/bin/
10 | **/obj/
11 | **/out/
12 |
13 | # files
14 | *Dockerfile
15 | docker-compose*
16 | **/*.md
17 | *.ps1
--------------------------------------------------------------------------------
/examples/helix-basic-aspnetcore/.gitignore:
--------------------------------------------------------------------------------
1 | # Ignore thumbnails created by Windows
2 | Thumbs.db
3 | # Ignore files built by Visual Studio
4 | *.obj
5 | *.exe
6 | *.pdb
7 | *.user
8 | *.aps
9 | *.pch
10 | *.vspscc
11 | *_i.c
12 | *_p.c
13 | *.ncb
14 | *.suo
15 | *.tlb
16 | *.tlh
17 | *.bak
18 | *.cache
19 | *.ilk
20 | *.log
21 | [Bb]in
22 | [Dd]ebug*/
23 | *.lib
24 | *.sbr
25 | obj/
26 | [Rr]elease*/
27 | _ReSharper*/
28 | [Tt]est[Rr]esult*
29 | .vs/
30 |
31 | # may contain OAuth secrets, do not commit
32 | .sitecore/user.json
33 |
34 | # NuGet cache for Sitecore CLI
35 | .sitecore/package-cache/
36 |
37 | # Ephemeral index caches used by serialization, do not commit
38 | .scindex
39 |
40 | # Don't commit packages
41 | *.itempackage
42 | *.sicpackage
--------------------------------------------------------------------------------
/examples/helix-basic-aspnetcore/.vscode/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | "files.associations": {
3 | "*.sicpackage": "json"
4 | },
5 | "json.schemas": [
6 | {
7 | "fileMatch": ["/sitecore.json"],
8 | "url": "./.sitecore/schemas/RootConfigurationFile.schema.json"
9 | },
10 | {
11 | "fileMatch": ["/.sitecore/user.json"],
12 | "url": "./.sitecore/schemas/UserConfiguration.schema.json"
13 | },
14 | {
15 | "fileMatch": ["*.module.json"],
16 | "url": "./.sitecore/schemas/ModuleFile.schema.json"
17 | }
18 | ]
19 | }
--------------------------------------------------------------------------------
/examples/helix-basic-aspnetcore/Directory.Build.targets:
--------------------------------------------------------------------------------
1 |