├── .artifactignore ├── .editorconfig ├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── 01_bug_report.yml │ └── config.yml ├── .gitignore ├── .globalconfig ├── NuGet.config ├── README.md ├── Umbraco.SampleSite.sln ├── azure-pipelines.yml ├── examples └── Umbraco.SampleSite.Web │ ├── .gitignore │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Startup.cs │ ├── Umbraco.SampleSite.Web.csproj │ ├── Views │ ├── Partials │ │ ├── blockgrid │ │ │ ├── area.cshtml │ │ │ ├── areas.cshtml │ │ │ ├── default.cshtml │ │ │ └── items.cshtml │ │ └── blocklist │ │ │ └── default.cshtml │ └── _ViewImports.cshtml │ ├── appsettings-schema.Umbraco.Cms.json │ ├── appsettings.Development.json │ ├── appsettings.json │ └── umbraco-package-schema.json ├── global.json ├── icon.png ├── src └── Umbraco.SampleSite │ ├── ContactForm.json │ ├── Controllers │ └── ContactFormController.cs │ ├── Migrations │ ├── ImportPackageXmlMigration.cs │ ├── PostMigrationNotificationHandler.cs │ ├── StarterKitPackageMigrationPlan.cs │ └── package.zip │ ├── Models │ ├── ContactFormViewModel.cs │ ├── LatestBlogPostsViewModel.cs │ ├── LessonModel.cs │ └── LessonStepModel.cs │ ├── StarterKitComposer.cs │ ├── Umbraco.SampleSite.csproj │ ├── ViewComponents │ └── LatestBlogPostsViewComponent.cs │ └── build │ └── Umbraco.TheStarterKit.targets ├── umbraco-marketplace.json └── version.json /.artifactignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/.artifactignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/01_bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/.github/ISSUE_TEMPLATE/01_bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/.gitignore -------------------------------------------------------------------------------- /.globalconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/.globalconfig -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/README.md -------------------------------------------------------------------------------- /Umbraco.SampleSite.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/Umbraco.SampleSite.sln -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /examples/Umbraco.SampleSite.Web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/examples/Umbraco.SampleSite.Web/.gitignore -------------------------------------------------------------------------------- /examples/Umbraco.SampleSite.Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/examples/Umbraco.SampleSite.Web/Program.cs -------------------------------------------------------------------------------- /examples/Umbraco.SampleSite.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/examples/Umbraco.SampleSite.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /examples/Umbraco.SampleSite.Web/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/examples/Umbraco.SampleSite.Web/Startup.cs -------------------------------------------------------------------------------- /examples/Umbraco.SampleSite.Web/Umbraco.SampleSite.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/examples/Umbraco.SampleSite.Web/Umbraco.SampleSite.Web.csproj -------------------------------------------------------------------------------- /examples/Umbraco.SampleSite.Web/Views/Partials/blockgrid/area.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/examples/Umbraco.SampleSite.Web/Views/Partials/blockgrid/area.cshtml -------------------------------------------------------------------------------- /examples/Umbraco.SampleSite.Web/Views/Partials/blockgrid/areas.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/examples/Umbraco.SampleSite.Web/Views/Partials/blockgrid/areas.cshtml -------------------------------------------------------------------------------- /examples/Umbraco.SampleSite.Web/Views/Partials/blockgrid/default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/examples/Umbraco.SampleSite.Web/Views/Partials/blockgrid/default.cshtml -------------------------------------------------------------------------------- /examples/Umbraco.SampleSite.Web/Views/Partials/blockgrid/items.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/examples/Umbraco.SampleSite.Web/Views/Partials/blockgrid/items.cshtml -------------------------------------------------------------------------------- /examples/Umbraco.SampleSite.Web/Views/Partials/blocklist/default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/examples/Umbraco.SampleSite.Web/Views/Partials/blocklist/default.cshtml -------------------------------------------------------------------------------- /examples/Umbraco.SampleSite.Web/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/examples/Umbraco.SampleSite.Web/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /examples/Umbraco.SampleSite.Web/appsettings-schema.Umbraco.Cms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/examples/Umbraco.SampleSite.Web/appsettings-schema.Umbraco.Cms.json -------------------------------------------------------------------------------- /examples/Umbraco.SampleSite.Web/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/examples/Umbraco.SampleSite.Web/appsettings.Development.json -------------------------------------------------------------------------------- /examples/Umbraco.SampleSite.Web/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/examples/Umbraco.SampleSite.Web/appsettings.json -------------------------------------------------------------------------------- /examples/Umbraco.SampleSite.Web/umbraco-package-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/examples/Umbraco.SampleSite.Web/umbraco-package-schema.json -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/global.json -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/icon.png -------------------------------------------------------------------------------- /src/Umbraco.SampleSite/ContactForm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/src/Umbraco.SampleSite/ContactForm.json -------------------------------------------------------------------------------- /src/Umbraco.SampleSite/Controllers/ContactFormController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/src/Umbraco.SampleSite/Controllers/ContactFormController.cs -------------------------------------------------------------------------------- /src/Umbraco.SampleSite/Migrations/ImportPackageXmlMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/src/Umbraco.SampleSite/Migrations/ImportPackageXmlMigration.cs -------------------------------------------------------------------------------- /src/Umbraco.SampleSite/Migrations/PostMigrationNotificationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/src/Umbraco.SampleSite/Migrations/PostMigrationNotificationHandler.cs -------------------------------------------------------------------------------- /src/Umbraco.SampleSite/Migrations/StarterKitPackageMigrationPlan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/src/Umbraco.SampleSite/Migrations/StarterKitPackageMigrationPlan.cs -------------------------------------------------------------------------------- /src/Umbraco.SampleSite/Migrations/package.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/src/Umbraco.SampleSite/Migrations/package.zip -------------------------------------------------------------------------------- /src/Umbraco.SampleSite/Models/ContactFormViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/src/Umbraco.SampleSite/Models/ContactFormViewModel.cs -------------------------------------------------------------------------------- /src/Umbraco.SampleSite/Models/LatestBlogPostsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/src/Umbraco.SampleSite/Models/LatestBlogPostsViewModel.cs -------------------------------------------------------------------------------- /src/Umbraco.SampleSite/Models/LessonModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/src/Umbraco.SampleSite/Models/LessonModel.cs -------------------------------------------------------------------------------- /src/Umbraco.SampleSite/Models/LessonStepModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/src/Umbraco.SampleSite/Models/LessonStepModel.cs -------------------------------------------------------------------------------- /src/Umbraco.SampleSite/StarterKitComposer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/src/Umbraco.SampleSite/StarterKitComposer.cs -------------------------------------------------------------------------------- /src/Umbraco.SampleSite/Umbraco.SampleSite.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/src/Umbraco.SampleSite/Umbraco.SampleSite.csproj -------------------------------------------------------------------------------- /src/Umbraco.SampleSite/ViewComponents/LatestBlogPostsViewComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/src/Umbraco.SampleSite/ViewComponents/LatestBlogPostsViewComponent.cs -------------------------------------------------------------------------------- /src/Umbraco.SampleSite/build/Umbraco.TheStarterKit.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/src/Umbraco.SampleSite/build/Umbraco.TheStarterKit.targets -------------------------------------------------------------------------------- /umbraco-marketplace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/umbraco-marketplace.json -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/The-Starter-Kit/HEAD/version.json --------------------------------------------------------------------------------