├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .nuget ├── NuGet.Config ├── NuGet.exe └── NuGet.targets ├── LICENSE.md ├── NuGet.Config ├── PowerSlice.sln ├── PowerSlice ├── ContentSliceBase.cs ├── ContentSliceComponent.cs ├── CreateOption.cs ├── IContentSlice.cs ├── ISortableContentSlice.cs ├── InitializationModule.cs ├── PowerSlice.csproj ├── PowerSlice.nuspec ├── SlicesComponent.cs ├── SortAction.cs ├── SortOption.cs ├── clientResources │ ├── PowerSlice │ │ └── Components │ │ │ ├── ContentSlice.js │ │ │ ├── ContentSliceGrid.js │ │ │ ├── CreateContentInSliceDialog.js │ │ │ ├── CreateSpecificContent.js │ │ │ ├── SortDropDown.js │ │ │ ├── Tasks.js │ │ │ └── templates │ │ │ ├── CreateContentInSliceDialog.html │ │ │ └── Tasks.html │ ├── css │ │ ├── powerslice.css │ │ ├── powerslice.css.map │ │ └── powerslice.less │ └── images │ │ ├── commonFormArrows.png │ │ ├── sortAscending.png │ │ ├── sortDescending.png │ │ └── sorticon.png ├── lang │ └── PowerSlice.xml ├── module.config ├── modules │ └── _protected │ │ └── Find │ │ └── Find.zip ├── version.props └── web.config.transform ├── README.md ├── assets └── readme.txt ├── pack.bat └── sample └── AlloyMvcTemplates ├── .gitignore ├── AlloyMvcTemplates.csproj ├── Business ├── Channels │ ├── DisplayResolutionBase.cs │ ├── DisplayResolutions.cs │ ├── MobileChannel.cs │ └── WebChannel.cs ├── ContentExtensions.cs ├── ContentLocator.cs ├── EditorDescriptors │ ├── ContactPageSelectionFactory.cs │ └── ContactPageSelector.cs ├── IModifyLayout.cs ├── Initialization │ └── CustomizedRenderingInitialization.cs ├── PageContextActionFilter.cs ├── PageTypeExtensions.cs ├── PageViewContextFactory.cs ├── Plugins │ └── NewsGeneratorPlugin.cs ├── Rendering │ ├── AlloyContentAreaRenderer.cs │ ├── ErrorHandlingContentRenderer.cs │ ├── IContainerPage.cs │ ├── ICustomCssInContentArea.cs │ ├── SiteViewEngineLocationExpander.cs │ └── TemplateCoordinator.cs └── UIDescriptors │ └── ContainerPageUIDescriptor.cs ├── ClientResources ├── Images │ └── icons │ │ ├── editing.png │ │ └── layoutIcons24x24.png ├── Scripts │ └── Editors │ │ └── StringList.js └── Styles │ └── Styles.css ├── Components ├── ContactBlockViewComponent.cs ├── ImageFileViewComponent.cs ├── PageListBlockViewComponent.cs └── VideoFileViewComponent.cs ├── Controllers ├── DefaultPageController.cs ├── PageControllerBase.cs ├── PreviewController.cs ├── RegisterController.cs ├── RouteAttributeController.cs ├── SearchPageController.cs └── StartPageController.cs ├── CustomPowerSlice ├── ArticleSlice.cs ├── BlocksSlice.cs ├── EverythingSlice.cs ├── MyPagesSlice.cs └── PagesSlice.cs ├── Extensions ├── HttpContextExtensions.cs ├── ServiceCollectionExtensions.cs └── ViewContextExtension.cs ├── Global.cs ├── Helpers ├── CategorizableExtensions.cs ├── HtmlHelpers.cs └── UrlHelpers.cs ├── Infrastructure ├── AdministratorRegistrationPageMiddleware.cs └── RegisterFirstAdminWithLocalRequestAttribute.cs ├── InternalServiceCollectionExtensions.cs ├── Models ├── Blocks │ ├── ButtonBlock.cs │ ├── ContactBlock.cs │ ├── EditorialBlock.cs │ ├── JumbotronBlock.cs │ ├── PageListBlock.cs │ ├── SiteBlockData.cs │ ├── SiteLogotypeBlock.cs │ ├── TeaserBlock.cs │ └── _ReadMe.txt ├── HeadlessContent │ ├── IngredientBlock.cs │ └── RecipeBlock.cs ├── LoginViewModel.cs ├── Media │ ├── GenericMedia.cs │ ├── ImageFile.cs │ ├── VectorImageFile.cs │ └── VideoFile.cs ├── Pages │ ├── AllPropertiesTestPage.cs │ ├── ArticlePage.cs │ ├── ContactPage.cs │ ├── ContainerPage.cs │ ├── IHasRelatedContent.cs │ ├── ISearchPage.cs │ ├── LandingPage.cs │ ├── NewsPage.cs │ ├── ProductPage.cs │ ├── SearchPage.cs │ ├── SitePageData.cs │ ├── StandardPage.cs │ ├── StartPage.cs │ └── _ReadMe.txt ├── Register │ └── RegisterViewModel.cs ├── SiteContentType.cs ├── SiteImageUrl.cs └── ViewModels │ ├── ContactBlockModel.cs │ ├── ContentRenderingErrorModel.cs │ ├── IPageViewModel.cs │ ├── ImageViewModel.cs │ ├── LayoutModel.cs │ ├── PageListModel.cs │ ├── PageViewModel.cs │ ├── PreviewModel.cs │ ├── SearchContentModel.cs │ └── VideoViewModel.cs ├── NuGet.config ├── Program.cs ├── Properties ├── AssemblyInfo.cs └── launchSettings.json ├── Resources └── LanguageFiles │ ├── ContentTypeNames.xml │ ├── Display.xml │ ├── EditorHints.xml │ ├── GroupNames.xml │ ├── PropertyNames.xml │ ├── Views.xml │ └── _ReadMe.txt ├── Startup.cs ├── Views ├── ArticlePage │ └── Index.cshtml ├── LandingPage │ └── Index.cshtml ├── NewsGeneratorPlugin │ └── Index.cshtml ├── NewsPage │ └── Index.cshtml ├── Preview │ └── Index.cshtml ├── ProductPage │ └── Index.cshtml ├── Register │ └── Index.cshtml ├── SearchPage │ └── Index.cshtml ├── Shared │ ├── Blocks │ │ ├── ButtonBlock.cshtml │ │ ├── EditorialBlock.cshtml │ │ ├── JumbotronBlockWide.cshtml │ │ ├── NoRenderer.cshtml │ │ ├── SiteLogotypeBlock.cshtml │ │ ├── TeaserBlock.cshtml │ │ └── TeaserBlockWide.cshtml │ ├── Breadcrumbs.cshtml │ ├── Components │ │ ├── ContactBlock │ │ │ └── Default.cshtml │ │ ├── ImageFile │ │ │ └── Default.cshtml │ │ ├── PageListBlock │ │ │ └── Default.cshtml │ │ └── VideoFile │ │ │ └── Default.cshtml │ ├── DisplayTemplates │ │ ├── ContactPage.cshtml │ │ ├── DateTime.cshtml │ │ ├── Image.cshtml │ │ ├── StringsCollection.cshtml │ │ └── _ReadMe.txt │ ├── Footer.cshtml │ ├── Header.cshtml │ ├── Layouts │ │ ├── _LeftNavigation.cshtml │ │ ├── _Root.cshtml │ │ └── _TwoPlusOne.cshtml │ ├── PagePartials │ │ ├── ContactPage.cshtml │ │ ├── ContactPageWide.cshtml │ │ ├── Page.cshtml │ │ └── PageWide.cshtml │ ├── Readonly.cshtml │ ├── SubNavigation.cshtml │ ├── TemplateError.cshtml │ └── TemplateHint.cshtml ├── StandardPage │ └── Index.cshtml ├── StartPage │ └── Index.cshtml ├── Web.config ├── _ReadMe.txt ├── _ViewImports.cshtml └── _viewstart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── bundleconfig.json ├── docker-compose.yml ├── docker ├── Sql.Dockerfile ├── Web.Dockerfile ├── build-script │ ├── attach_db.sh │ └── wait_sqlserver_start_and_attachdb.sh ├── build.ps1 └── run-script │ ├── build.sh │ ├── build_web_only.sh │ ├── run.sh │ ├── stop.sh │ └── stop_web_only.sh ├── favicon.ico ├── module.config ├── modulesbin └── .gitkeep └── wwwroot ├── ClientResources ├── Images │ └── icons │ │ └── layoutIcons24x24.png ├── Scripts │ └── Editors │ │ └── StringList.js └── Styles │ ├── LayoutIcons.css │ └── Styles.css ├── css ├── bootstrap-collapse.js ├── bootstrap-responsive.css ├── bootstrap.css ├── editmode.css ├── editor.css ├── media.css └── style.css ├── gfx ├── New_FDT_Press_Contact_.JPG ├── carouselbackground.png ├── contact.jpg ├── exampelspan4.png ├── experts.png ├── fallows-media-wide.jpg ├── leader.png ├── leader2.png ├── logotype.png ├── meet.jpg ├── page-type-thumbnail-article.png ├── page-type-thumbnail-contact.png ├── page-type-thumbnail-product.png ├── page-type-thumbnail-standard.png ├── page-type-thumbnail.png ├── person.png ├── plan.jpg ├── play.png ├── playInactive.png ├── productLandingv2.png ├── searchbutton.png ├── searchbuttonsmall.png └── track.jpg ├── img ├── favicon.ico ├── glyphicons-halflings-white.png └── glyphicons-halflings.png ├── js ├── bootstrap.js └── jquery.js └── jwplayer ├── jwplayer.js ├── player.swf ├── preview.jpg └── video.mp4 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/.nuget/NuGet.Config -------------------------------------------------------------------------------- /.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/.nuget/NuGet.exe -------------------------------------------------------------------------------- /.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/.nuget/NuGet.targets -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/NuGet.Config -------------------------------------------------------------------------------- /PowerSlice.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/PowerSlice.sln -------------------------------------------------------------------------------- /PowerSlice/ContentSliceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/PowerSlice/ContentSliceBase.cs -------------------------------------------------------------------------------- /PowerSlice/ContentSliceComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/PowerSlice/ContentSliceComponent.cs -------------------------------------------------------------------------------- /PowerSlice/CreateOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/PowerSlice/CreateOption.cs -------------------------------------------------------------------------------- /PowerSlice/IContentSlice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/PowerSlice/IContentSlice.cs -------------------------------------------------------------------------------- /PowerSlice/ISortableContentSlice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/PowerSlice/ISortableContentSlice.cs -------------------------------------------------------------------------------- /PowerSlice/InitializationModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/PowerSlice/InitializationModule.cs -------------------------------------------------------------------------------- /PowerSlice/PowerSlice.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/PowerSlice/PowerSlice.csproj -------------------------------------------------------------------------------- /PowerSlice/PowerSlice.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/PowerSlice/PowerSlice.nuspec -------------------------------------------------------------------------------- /PowerSlice/SlicesComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/PowerSlice/SlicesComponent.cs -------------------------------------------------------------------------------- /PowerSlice/SortAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/PowerSlice/SortAction.cs -------------------------------------------------------------------------------- /PowerSlice/SortOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/PowerSlice/SortOption.cs -------------------------------------------------------------------------------- /PowerSlice/clientResources/PowerSlice/Components/ContentSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/PowerSlice/clientResources/PowerSlice/Components/ContentSlice.js -------------------------------------------------------------------------------- /PowerSlice/clientResources/PowerSlice/Components/ContentSliceGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/PowerSlice/clientResources/PowerSlice/Components/ContentSliceGrid.js -------------------------------------------------------------------------------- /PowerSlice/clientResources/PowerSlice/Components/CreateContentInSliceDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/PowerSlice/clientResources/PowerSlice/Components/CreateContentInSliceDialog.js -------------------------------------------------------------------------------- /PowerSlice/clientResources/PowerSlice/Components/CreateSpecificContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/PowerSlice/clientResources/PowerSlice/Components/CreateSpecificContent.js -------------------------------------------------------------------------------- /PowerSlice/clientResources/PowerSlice/Components/SortDropDown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/PowerSlice/clientResources/PowerSlice/Components/SortDropDown.js -------------------------------------------------------------------------------- /PowerSlice/clientResources/PowerSlice/Components/Tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/PowerSlice/clientResources/PowerSlice/Components/Tasks.js -------------------------------------------------------------------------------- /PowerSlice/clientResources/PowerSlice/Components/templates/CreateContentInSliceDialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/PowerSlice/clientResources/PowerSlice/Components/templates/CreateContentInSliceDialog.html -------------------------------------------------------------------------------- /PowerSlice/clientResources/PowerSlice/Components/templates/Tasks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/PowerSlice/clientResources/PowerSlice/Components/templates/Tasks.html -------------------------------------------------------------------------------- /PowerSlice/clientResources/css/powerslice.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/PowerSlice/clientResources/css/powerslice.css -------------------------------------------------------------------------------- /PowerSlice/clientResources/css/powerslice.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/PowerSlice/clientResources/css/powerslice.css.map -------------------------------------------------------------------------------- /PowerSlice/clientResources/css/powerslice.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/PowerSlice/clientResources/css/powerslice.less -------------------------------------------------------------------------------- /PowerSlice/clientResources/images/commonFormArrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/PowerSlice/clientResources/images/commonFormArrows.png -------------------------------------------------------------------------------- /PowerSlice/clientResources/images/sortAscending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/PowerSlice/clientResources/images/sortAscending.png -------------------------------------------------------------------------------- /PowerSlice/clientResources/images/sortDescending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/PowerSlice/clientResources/images/sortDescending.png -------------------------------------------------------------------------------- /PowerSlice/clientResources/images/sorticon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/PowerSlice/clientResources/images/sorticon.png -------------------------------------------------------------------------------- /PowerSlice/lang/PowerSlice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/PowerSlice/lang/PowerSlice.xml -------------------------------------------------------------------------------- /PowerSlice/module.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/PowerSlice/module.config -------------------------------------------------------------------------------- /PowerSlice/modules/_protected/Find/Find.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/PowerSlice/modules/_protected/Find/Find.zip -------------------------------------------------------------------------------- /PowerSlice/version.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/PowerSlice/version.props -------------------------------------------------------------------------------- /PowerSlice/web.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/PowerSlice/web.config.transform -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/README.md -------------------------------------------------------------------------------- /assets/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/assets/readme.txt -------------------------------------------------------------------------------- /pack.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/pack.bat -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/.gitignore -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/AlloyMvcTemplates.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/AlloyMvcTemplates.csproj -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Business/Channels/DisplayResolutionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Business/Channels/DisplayResolutionBase.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Business/Channels/DisplayResolutions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Business/Channels/DisplayResolutions.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Business/Channels/MobileChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Business/Channels/MobileChannel.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Business/Channels/WebChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Business/Channels/WebChannel.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Business/ContentExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Business/ContentExtensions.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Business/ContentLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Business/ContentLocator.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Business/EditorDescriptors/ContactPageSelectionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Business/EditorDescriptors/ContactPageSelectionFactory.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Business/EditorDescriptors/ContactPageSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Business/EditorDescriptors/ContactPageSelector.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Business/IModifyLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Business/IModifyLayout.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Business/Initialization/CustomizedRenderingInitialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Business/Initialization/CustomizedRenderingInitialization.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Business/PageContextActionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Business/PageContextActionFilter.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Business/PageTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Business/PageTypeExtensions.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Business/PageViewContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Business/PageViewContextFactory.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Business/Plugins/NewsGeneratorPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Business/Plugins/NewsGeneratorPlugin.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Business/Rendering/AlloyContentAreaRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Business/Rendering/AlloyContentAreaRenderer.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Business/Rendering/ErrorHandlingContentRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Business/Rendering/ErrorHandlingContentRenderer.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Business/Rendering/IContainerPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Business/Rendering/IContainerPage.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Business/Rendering/ICustomCssInContentArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Business/Rendering/ICustomCssInContentArea.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Business/Rendering/SiteViewEngineLocationExpander.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Business/Rendering/SiteViewEngineLocationExpander.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Business/Rendering/TemplateCoordinator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Business/Rendering/TemplateCoordinator.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Business/UIDescriptors/ContainerPageUIDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Business/UIDescriptors/ContainerPageUIDescriptor.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/ClientResources/Images/icons/editing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/ClientResources/Images/icons/editing.png -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/ClientResources/Images/icons/layoutIcons24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/ClientResources/Images/icons/layoutIcons24x24.png -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/ClientResources/Scripts/Editors/StringList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/ClientResources/Scripts/Editors/StringList.js -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/ClientResources/Styles/Styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/ClientResources/Styles/Styles.css -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Components/ContactBlockViewComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Components/ContactBlockViewComponent.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Components/ImageFileViewComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Components/ImageFileViewComponent.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Components/PageListBlockViewComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Components/PageListBlockViewComponent.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Components/VideoFileViewComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Components/VideoFileViewComponent.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Controllers/DefaultPageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Controllers/DefaultPageController.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Controllers/PageControllerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Controllers/PageControllerBase.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Controllers/PreviewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Controllers/PreviewController.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Controllers/RegisterController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Controllers/RegisterController.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Controllers/RouteAttributeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Controllers/RouteAttributeController.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Controllers/SearchPageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Controllers/SearchPageController.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Controllers/StartPageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Controllers/StartPageController.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/CustomPowerSlice/ArticleSlice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/CustomPowerSlice/ArticleSlice.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/CustomPowerSlice/BlocksSlice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/CustomPowerSlice/BlocksSlice.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/CustomPowerSlice/EverythingSlice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/CustomPowerSlice/EverythingSlice.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/CustomPowerSlice/MyPagesSlice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/CustomPowerSlice/MyPagesSlice.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/CustomPowerSlice/PagesSlice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/CustomPowerSlice/PagesSlice.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Extensions/HttpContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Extensions/HttpContextExtensions.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Extensions/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Extensions/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Extensions/ViewContextExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Extensions/ViewContextExtension.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Global.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Global.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Helpers/CategorizableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Helpers/CategorizableExtensions.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Helpers/HtmlHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Helpers/HtmlHelpers.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Helpers/UrlHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Helpers/UrlHelpers.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Infrastructure/AdministratorRegistrationPageMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Infrastructure/AdministratorRegistrationPageMiddleware.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Infrastructure/RegisterFirstAdminWithLocalRequestAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Infrastructure/RegisterFirstAdminWithLocalRequestAttribute.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/InternalServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/InternalServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/Blocks/ButtonBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/Blocks/ButtonBlock.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/Blocks/ContactBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/Blocks/ContactBlock.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/Blocks/EditorialBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/Blocks/EditorialBlock.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/Blocks/JumbotronBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/Blocks/JumbotronBlock.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/Blocks/PageListBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/Blocks/PageListBlock.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/Blocks/SiteBlockData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/Blocks/SiteBlockData.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/Blocks/SiteLogotypeBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/Blocks/SiteLogotypeBlock.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/Blocks/TeaserBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/Blocks/TeaserBlock.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/Blocks/_ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/Blocks/_ReadMe.txt -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/HeadlessContent/IngredientBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/HeadlessContent/IngredientBlock.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/HeadlessContent/RecipeBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/HeadlessContent/RecipeBlock.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/LoginViewModel.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/Media/GenericMedia.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/Media/GenericMedia.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/Media/ImageFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/Media/ImageFile.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/Media/VectorImageFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/Media/VectorImageFile.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/Media/VideoFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/Media/VideoFile.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/Pages/AllPropertiesTestPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/Pages/AllPropertiesTestPage.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/Pages/ArticlePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/Pages/ArticlePage.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/Pages/ContactPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/Pages/ContactPage.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/Pages/ContainerPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/Pages/ContainerPage.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/Pages/IHasRelatedContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/Pages/IHasRelatedContent.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/Pages/ISearchPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/Pages/ISearchPage.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/Pages/LandingPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/Pages/LandingPage.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/Pages/NewsPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/Pages/NewsPage.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/Pages/ProductPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/Pages/ProductPage.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/Pages/SearchPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/Pages/SearchPage.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/Pages/SitePageData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/Pages/SitePageData.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/Pages/StandardPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/Pages/StandardPage.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/Pages/StartPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/Pages/StartPage.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/Pages/_ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/Pages/_ReadMe.txt -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/Register/RegisterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/Register/RegisterViewModel.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/SiteContentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/SiteContentType.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/SiteImageUrl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/SiteImageUrl.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/ViewModels/ContactBlockModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/ViewModels/ContactBlockModel.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/ViewModels/ContentRenderingErrorModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/ViewModels/ContentRenderingErrorModel.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/ViewModels/IPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/ViewModels/IPageViewModel.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/ViewModels/ImageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/ViewModels/ImageViewModel.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/ViewModels/LayoutModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/ViewModels/LayoutModel.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/ViewModels/PageListModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/ViewModels/PageListModel.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/ViewModels/PageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/ViewModels/PageViewModel.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/ViewModels/PreviewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/ViewModels/PreviewModel.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/ViewModels/SearchContentModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/ViewModels/SearchContentModel.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Models/ViewModels/VideoViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Models/ViewModels/VideoViewModel.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/NuGet.config -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Program.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Properties/launchSettings.json -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Resources/LanguageFiles/ContentTypeNames.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Resources/LanguageFiles/ContentTypeNames.xml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Resources/LanguageFiles/Display.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Resources/LanguageFiles/Display.xml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Resources/LanguageFiles/EditorHints.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Resources/LanguageFiles/EditorHints.xml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Resources/LanguageFiles/GroupNames.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Resources/LanguageFiles/GroupNames.xml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Resources/LanguageFiles/PropertyNames.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Resources/LanguageFiles/PropertyNames.xml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Resources/LanguageFiles/Views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Resources/LanguageFiles/Views.xml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Resources/LanguageFiles/_ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Resources/LanguageFiles/_ReadMe.txt -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Startup.cs -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/ArticlePage/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/ArticlePage/Index.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/LandingPage/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/LandingPage/Index.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/NewsGeneratorPlugin/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/NewsGeneratorPlugin/Index.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/NewsPage/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/NewsPage/Index.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/Preview/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/Preview/Index.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/ProductPage/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/ProductPage/Index.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/Register/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/Register/Index.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/SearchPage/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/SearchPage/Index.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/Shared/Blocks/ButtonBlock.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/Shared/Blocks/ButtonBlock.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/Shared/Blocks/EditorialBlock.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/Shared/Blocks/EditorialBlock.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/Shared/Blocks/JumbotronBlockWide.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/Shared/Blocks/JumbotronBlockWide.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/Shared/Blocks/NoRenderer.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/Shared/Blocks/NoRenderer.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/Shared/Blocks/SiteLogotypeBlock.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/Shared/Blocks/SiteLogotypeBlock.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/Shared/Blocks/TeaserBlock.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/Shared/Blocks/TeaserBlock.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/Shared/Blocks/TeaserBlockWide.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/Shared/Blocks/TeaserBlockWide.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/Shared/Breadcrumbs.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/Shared/Breadcrumbs.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/Shared/Components/ContactBlock/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/Shared/Components/ContactBlock/Default.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/Shared/Components/ImageFile/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/Shared/Components/ImageFile/Default.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/Shared/Components/PageListBlock/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/Shared/Components/PageListBlock/Default.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/Shared/Components/VideoFile/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/Shared/Components/VideoFile/Default.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/Shared/DisplayTemplates/ContactPage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/Shared/DisplayTemplates/ContactPage.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/Shared/DisplayTemplates/DateTime.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/Shared/DisplayTemplates/DateTime.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/Shared/DisplayTemplates/Image.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/Shared/DisplayTemplates/Image.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/Shared/DisplayTemplates/StringsCollection.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/Shared/DisplayTemplates/StringsCollection.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/Shared/DisplayTemplates/_ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/Shared/DisplayTemplates/_ReadMe.txt -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/Shared/Footer.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/Shared/Footer.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/Shared/Header.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/Shared/Header.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/Shared/Layouts/_LeftNavigation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/Shared/Layouts/_LeftNavigation.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/Shared/Layouts/_Root.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/Shared/Layouts/_Root.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/Shared/Layouts/_TwoPlusOne.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/Shared/Layouts/_TwoPlusOne.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/Shared/PagePartials/ContactPage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/Shared/PagePartials/ContactPage.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/Shared/PagePartials/ContactPageWide.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/Shared/PagePartials/ContactPageWide.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/Shared/PagePartials/Page.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/Shared/PagePartials/Page.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/Shared/PagePartials/PageWide.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/Shared/PagePartials/PageWide.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/Shared/Readonly.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/Shared/Readonly.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/Shared/SubNavigation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/Shared/SubNavigation.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/Shared/TemplateError.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/Shared/TemplateError.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/Shared/TemplateHint.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/Shared/TemplateHint.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/StandardPage/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/StandardPage/Index.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/StartPage/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/StartPage/Index.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/Web.config -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/_ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/_ReadMe.txt -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/Views/_viewstart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/Views/_viewstart.cshtml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/appsettings.Development.json -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/appsettings.json -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/bundleconfig.json -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/docker-compose.yml -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/docker/Sql.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/docker/Sql.Dockerfile -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/docker/Web.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/docker/Web.Dockerfile -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/docker/build-script/attach_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/docker/build-script/attach_db.sh -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/docker/build-script/wait_sqlserver_start_and_attachdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/docker/build-script/wait_sqlserver_start_and_attachdb.sh -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/docker/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/docker/build.ps1 -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/docker/run-script/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/docker/run-script/build.sh -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/docker/run-script/build_web_only.sh: -------------------------------------------------------------------------------- 1 | docker load -i alloy-web.tar -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/docker/run-script/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/docker/run-script/run.sh -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/docker/run-script/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/docker/run-script/stop.sh -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/docker/run-script/stop_web_only.sh: -------------------------------------------------------------------------------- 1 | docker-compose rm -f -s -v web -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/favicon.ico -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/module.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/module.config -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/modulesbin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/ClientResources/Images/icons/layoutIcons24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/ClientResources/Images/icons/layoutIcons24x24.png -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/ClientResources/Scripts/Editors/StringList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/ClientResources/Scripts/Editors/StringList.js -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/ClientResources/Styles/LayoutIcons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/ClientResources/Styles/LayoutIcons.css -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/ClientResources/Styles/Styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/ClientResources/Styles/Styles.css -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/css/bootstrap-collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/css/bootstrap-collapse.js -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/css/bootstrap.css -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/css/editmode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/css/editmode.css -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/css/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/css/editor.css -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/css/media.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/css/media.css -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/css/style.css -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/gfx/New_FDT_Press_Contact_.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/gfx/New_FDT_Press_Contact_.JPG -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/gfx/carouselbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/gfx/carouselbackground.png -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/gfx/contact.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/gfx/contact.jpg -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/gfx/exampelspan4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/gfx/exampelspan4.png -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/gfx/experts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/gfx/experts.png -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/gfx/fallows-media-wide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/gfx/fallows-media-wide.jpg -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/gfx/leader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/gfx/leader.png -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/gfx/leader2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/gfx/leader2.png -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/gfx/logotype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/gfx/logotype.png -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/gfx/meet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/gfx/meet.jpg -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/gfx/page-type-thumbnail-article.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/gfx/page-type-thumbnail-article.png -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/gfx/page-type-thumbnail-contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/gfx/page-type-thumbnail-contact.png -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/gfx/page-type-thumbnail-product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/gfx/page-type-thumbnail-product.png -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/gfx/page-type-thumbnail-standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/gfx/page-type-thumbnail-standard.png -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/gfx/page-type-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/gfx/page-type-thumbnail.png -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/gfx/person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/gfx/person.png -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/gfx/plan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/gfx/plan.jpg -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/gfx/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/gfx/play.png -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/gfx/playInactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/gfx/playInactive.png -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/gfx/productLandingv2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/gfx/productLandingv2.png -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/gfx/searchbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/gfx/searchbutton.png -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/gfx/searchbuttonsmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/gfx/searchbuttonsmall.png -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/gfx/track.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/gfx/track.jpg -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/img/favicon.ico -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/js/bootstrap.js -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/js/jquery.js -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/jwplayer/jwplayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/jwplayer/jwplayer.js -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/jwplayer/player.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/jwplayer/player.swf -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/jwplayer/preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/jwplayer/preview.jpg -------------------------------------------------------------------------------- /sample/AlloyMvcTemplates/wwwroot/jwplayer/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/episerver/PowerSlice/HEAD/sample/AlloyMvcTemplates/wwwroot/jwplayer/video.mp4 --------------------------------------------------------------------------------