├── .github ├── CODE_OF_CONDUCT.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ └── feature_request.md └── pull_request_template.md ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── statamic-peak-commands.php ├── phpunit.xml ├── resources ├── blocks │ ├── call_to_action │ │ ├── _call_to_action.antlers.html │ │ ├── call_to_action.yaml │ │ └── config.php │ ├── cards │ │ ├── _cards.antlers.html │ │ ├── cards.yaml │ │ └── config.php │ ├── collection │ │ ├── _collection.antlers.html │ │ ├── collection.yaml │ │ └── config.php │ ├── columns │ │ ├── _columns.antlers.html │ │ ├── columns.yaml │ │ └── config.php │ ├── divider │ │ ├── _divider.antlers.html │ │ ├── config.php │ │ └── divider.yaml │ ├── full_width_image │ │ ├── _full_width_image.antlers.html │ │ ├── config.php │ │ └── full_width_image.yaml │ ├── image_and_text │ │ ├── _image_and_text.antlers.html │ │ ├── config.php │ │ └── image_and_text.yaml │ ├── images_grid │ │ ├── _images_grid.antlers.html │ │ ├── config.php │ │ └── images_grid.yaml │ ├── index_content │ │ ├── _index_content.antlers.html │ │ ├── config.php │ │ └── index_content.yaml │ └── text_columns │ │ ├── _text_columns.antlers.html │ │ ├── config.php │ │ └── text_columns.yaml ├── presets │ ├── availability │ │ ├── config.php │ │ ├── content │ │ │ └── globals │ │ │ │ └── availability.yaml │ │ └── resources │ │ │ ├── blueprints │ │ │ └── globals │ │ │ │ └── availability.yaml │ │ │ └── views │ │ │ └── components │ │ │ └── _availability.antlers.html │ ├── banner │ │ ├── config.php │ │ ├── content │ │ │ └── globals │ │ │ │ └── banner.yaml │ │ └── resources │ │ │ ├── blueprints │ │ │ └── globals │ │ │ │ └── banner.yaml │ │ │ ├── svg │ │ │ └── close.svg │ │ │ └── views │ │ │ └── layout │ │ │ └── _banner.antlers.html │ ├── breadcrumbs │ │ ├── config.php │ │ └── resources │ │ │ └── views │ │ │ └── navigation │ │ │ └── _breadcrumbs.antlers.html │ ├── business_hours │ │ ├── config.php │ │ ├── content │ │ │ └── globals │ │ │ │ └── business_hours.yaml │ │ └── resources │ │ │ ├── blueprints │ │ │ └── globals │ │ │ │ └── business_hours.yaml │ │ │ ├── svg │ │ │ └── phone.svg │ │ │ └── views │ │ │ ├── components │ │ │ ├── _business_hours.antlers.html │ │ │ └── _call_now.antlers.html │ │ │ └── snippets │ │ │ └── _business_hours.antlers.html │ ├── clients │ │ ├── config.php │ │ ├── content │ │ │ └── collections │ │ │ │ └── clients.yaml │ │ └── resources │ │ │ ├── blueprints │ │ │ └── collections │ │ │ │ └── clients │ │ │ │ └── clients.yaml │ │ │ ├── fieldsets │ │ │ └── clients.yaml │ │ │ └── views │ │ │ └── page_builder │ │ │ └── _clients.antlers.html │ ├── default_blocks │ │ ├── app │ │ │ └── FieldTypes │ │ │ │ └── DefaultBlockSelect.php │ │ ├── config.php │ │ ├── content │ │ │ └── globals │ │ │ │ └── default_blocks.yaml │ │ └── resources │ │ │ ├── blueprints │ │ │ └── globals │ │ │ │ └── default_blocks.yaml │ │ │ ├── fieldsets │ │ │ └── default_blocks.yaml │ │ │ └── views │ │ │ ├── layout │ │ │ └── _default_blocks.antlers.html │ │ │ └── page_builder │ │ │ └── _default_blocks.antlers.html │ ├── events │ │ ├── config.php │ │ ├── content │ │ │ └── collections │ │ │ │ ├── events.yaml │ │ │ │ └── pages │ │ │ │ └── events.md │ │ └── resources │ │ │ ├── blueprints │ │ │ └── collections │ │ │ │ └── events │ │ │ │ └── events.yaml │ │ │ ├── fieldsets │ │ │ ├── events.yaml │ │ │ └── index_content.yaml │ │ │ └── views │ │ │ ├── components │ │ │ └── _events_item.antlers.html │ │ │ ├── events │ │ │ ├── index.antlers.html │ │ │ └── show.antlers.html │ │ │ └── page_builder │ │ │ ├── _events.antlers.html │ │ │ └── _index_content.antlers.html │ ├── faq │ │ ├── config.php │ │ ├── content │ │ │ └── collections │ │ │ │ └── faq.yaml │ │ └── resources │ │ │ ├── blueprints │ │ │ └── collections │ │ │ │ └── faq │ │ │ │ └── faq.yaml │ │ │ ├── fieldsets │ │ │ └── faq.yaml │ │ │ └── views │ │ │ └── page_builder │ │ │ └── _faq.antlers.html │ ├── footer │ │ ├── config.php │ │ ├── content │ │ │ └── navigation │ │ │ │ ├── footer.yaml │ │ │ │ └── legal.yaml │ │ └── resources │ │ │ ├── blueprints │ │ │ └── navigation │ │ │ │ ├── footer.yaml │ │ │ │ └── legal.yaml │ │ │ └── views │ │ │ └── layout │ │ │ └── _footer.antlers.html │ ├── hero │ │ ├── config.php │ │ └── resources │ │ │ ├── fieldsets │ │ │ └── hero.yaml │ │ │ └── views │ │ │ └── layout │ │ │ └── _hero.antlers.html │ ├── horizon │ │ ├── config.php │ │ └── config │ │ │ └── horizon.php │ ├── image_credits │ │ ├── config.php │ │ └── resources │ │ │ ├── blueprints │ │ │ └── assets │ │ │ │ └── images.yaml │ │ │ ├── fieldsets │ │ │ └── image_credits.yaml │ │ │ └── views │ │ │ └── page_builder │ │ │ └── _image_credits.antlers.html │ ├── intranet │ │ ├── app │ │ │ ├── Listeners │ │ │ │ ├── SendEmailVerificationNotification.php │ │ │ │ └── SetUserEmailVerified.php │ │ │ ├── Models │ │ │ │ └── CustomUser.php │ │ │ ├── Statamic │ │ │ │ └── CustomUrlExcluder.php │ │ │ └── http │ │ │ │ └── Controllers │ │ │ │ └── UserController.php │ │ ├── config.php │ │ ├── content │ │ │ ├── collections │ │ │ │ └── pages │ │ │ │ │ ├── account.md │ │ │ │ │ ├── email-verification.md │ │ │ │ │ ├── login.md │ │ │ │ │ ├── password-forgotten.md │ │ │ │ │ ├── password-reset.md │ │ │ │ │ └── register.md │ │ │ └── globals │ │ │ │ └── intranet.yaml │ │ └── resources │ │ │ ├── blueprints │ │ │ ├── globals │ │ │ │ └── intranet.yaml │ │ │ └── user.yaml │ │ │ ├── fieldsets │ │ │ ├── account.yaml │ │ │ ├── email_verification.yaml │ │ │ ├── login.yaml │ │ │ ├── password_forgotten.yaml │ │ │ ├── password_reset.yaml │ │ │ └── register.yaml │ │ │ └── views │ │ │ ├── components │ │ │ ├── _form_input.antlers.html │ │ │ └── _login.antlers.html │ │ │ ├── page_builder │ │ │ ├── _account.antlers.html │ │ │ ├── _email_verification.antlers.html │ │ │ ├── _login.antlers.html │ │ │ ├── _password_forgotten.antlers.html │ │ │ ├── _password_reset.antlers.html │ │ │ └── _register.antlers.html │ │ │ └── vendor │ │ │ └── mail │ │ │ └── html │ │ │ └── message.blade.php │ ├── language_picker │ │ ├── config.php │ │ └── resources │ │ │ └── views │ │ │ └── navigation │ │ │ └── _language_picker.antlers.html │ ├── links │ │ ├── config.php │ │ └── resources │ │ │ ├── blueprints │ │ │ └── collections │ │ │ │ └── pages │ │ │ │ └── links.yaml │ │ │ ├── svg │ │ │ └── phosphor-fill.icons │ │ │ └── views │ │ │ └── links.antlers.html │ ├── lottie_player │ │ ├── config.php │ │ ├── content │ │ │ └── assets │ │ │ │ └── animations.yaml │ │ └── resources │ │ │ ├── blueprints │ │ │ └── assets │ │ │ │ └── animations.yaml │ │ │ ├── fieldsets │ │ │ └── animation.yaml │ │ │ └── views │ │ │ ├── components │ │ │ └── _animation.antlers.html │ │ │ └── page_builder │ │ │ └── _animation.antlers.html │ ├── mega_menu │ │ ├── config.php │ │ ├── content │ │ │ └── navigation │ │ │ │ └── main.yaml │ │ └── resources │ │ │ ├── blueprints │ │ │ └── navigation │ │ │ │ └── main.yaml │ │ │ └── views │ │ │ └── navigation │ │ │ ├── _main_desktop.antlers.html │ │ │ └── _main_mobile.antlers.html │ ├── modal │ │ ├── config.php │ │ └── resources │ │ │ ├── fieldsets │ │ │ └── invoke_modal.yaml │ │ │ └── views │ │ │ └── components │ │ │ ├── _invoke_modal.antlers.html │ │ │ └── _modal.antlers.html │ ├── news │ │ ├── config.php │ │ ├── content │ │ │ └── collections │ │ │ │ ├── news.yaml │ │ │ │ └── pages │ │ │ │ └── news.md │ │ └── resources │ │ │ ├── blueprints │ │ │ └── collections │ │ │ │ └── news │ │ │ │ └── news.yaml │ │ │ ├── fieldsets │ │ │ ├── index_content.yaml │ │ │ └── news.yaml │ │ │ └── views │ │ │ ├── components │ │ │ └── _news_item.antlers.html │ │ │ ├── feed │ │ │ └── feed.antlers.xml │ │ │ ├── news │ │ │ ├── index.antlers.html │ │ │ └── show.antlers.html │ │ │ └── page_builder │ │ │ ├── _index_content.antlers.html │ │ │ └── _news.antlers.html │ ├── password_protection │ │ ├── config.php │ │ ├── content │ │ │ └── collections │ │ │ │ └── pages │ │ │ │ └── login.md │ │ └── resources │ │ │ ├── fieldsets │ │ │ ├── login.yaml │ │ │ └── protect.yaml │ │ │ └── views │ │ │ └── page_builder │ │ │ └── _login.antlers.html │ ├── pricing │ │ ├── app │ │ │ └── Scopes │ │ │ │ └── Multiselect.php │ │ ├── config.php │ │ ├── content │ │ │ ├── collections │ │ │ │ ├── features.yaml │ │ │ │ └── tiers.yaml │ │ │ └── taxonomies │ │ │ │ └── groups.yaml │ │ └── resources │ │ │ ├── blueprints │ │ │ ├── collections │ │ │ │ ├── features │ │ │ │ │ └── feature.yaml │ │ │ │ └── tiers │ │ │ │ │ └── tier.yaml │ │ │ └── taxonomies │ │ │ │ └── groups │ │ │ │ └── group.yaml │ │ │ ├── fieldsets │ │ │ ├── features.yaml │ │ │ └── tiers.yaml │ │ │ ├── svg │ │ │ ├── check.svg │ │ │ └── cross.svg │ │ │ └── views │ │ │ └── page_builder │ │ │ ├── _features.antlers.html │ │ │ └── _tiers.antlers.html │ ├── search │ │ ├── config.php │ │ └── resources │ │ │ └── views │ │ │ ├── components │ │ │ └── _search_form.antlers.html │ │ │ └── search.antlers.html │ ├── secure_downloads │ │ ├── app │ │ │ ├── Http │ │ │ │ └── Controllers │ │ │ │ │ └── DownloadController.php │ │ │ └── Tags │ │ │ │ └── Download.php │ │ ├── config.php │ │ ├── content │ │ │ └── assets │ │ │ │ └── downloads.yaml │ │ └── resources │ │ │ ├── blueprints │ │ │ └── assets │ │ │ │ └── downloads.yaml │ │ │ ├── fieldsets │ │ │ └── downloads.yaml │ │ │ └── views │ │ │ └── page_builder │ │ │ └── _downloads.antlers.html │ ├── team_members │ │ ├── config.php │ │ ├── content │ │ │ └── collections │ │ │ │ └── team_members.yaml │ │ └── resources │ │ │ ├── blueprints │ │ │ └── collections │ │ │ │ └── team_members │ │ │ │ └── team_members.yaml │ │ │ ├── fieldsets │ │ │ └── team_members.yaml │ │ │ └── views │ │ │ └── page_builder │ │ │ └── _team_members.antlers.html │ ├── testimonials │ │ ├── config.php │ │ ├── content │ │ │ └── collections │ │ │ │ └── testimonials.yaml │ │ └── resources │ │ │ ├── blueprints │ │ │ └── collections │ │ │ │ └── testimonials │ │ │ │ └── testimonials.yaml │ │ │ ├── fieldsets │ │ │ └── testimonials.yaml │ │ │ └── views │ │ │ └── page_builder │ │ │ └── _testimonials.antlers.html │ ├── theme_toggle │ │ ├── config.php │ │ └── resources │ │ │ └── views │ │ │ └── components │ │ │ └── _theme_toggle.antlers.html │ └── vacancies │ │ ├── config.php │ │ ├── content │ │ └── collections │ │ │ ├── pages │ │ │ └── vacancies.md │ │ │ └── vacancies.yaml │ │ └── resources │ │ ├── blueprints │ │ └── collections │ │ │ └── vacancies │ │ │ └── vacancies.yaml │ │ ├── fieldsets │ │ └── index_content.yaml │ │ └── views │ │ ├── components │ │ └── _vacancies_item.antlers.html │ │ ├── page_builder │ │ └── _index_content.antlers.html │ │ └── vacancies │ │ ├── index.antlers.html │ │ └── show.antlers.html ├── sets │ ├── read_more │ │ ├── _read_more.antlers.html │ │ ├── config.php │ │ └── read_more.yaml │ └── video_self_hosted │ │ ├── _video_self_hosted.antlers.html │ │ ├── config.php │ │ └── video_self_hosted.yaml └── stubs │ ├── block.antlers.html.stub │ ├── collection.yaml.stub │ ├── collection_blueprint_private.yaml.stub │ ├── collection_blueprint_private_dated.yaml.stub │ ├── collection_blueprint_private_dated_no_slug.yaml.stub │ ├── collection_blueprint_private_no_slug.yaml.stub │ ├── collection_blueprint_public.yaml.stub │ ├── collection_blueprint_public_dated.yaml.stub │ ├── collection_blueprint_public_dated_no_slug.yaml.stub │ ├── collection_blueprint_public_no_slug.yaml.stub │ ├── fieldset_block.yaml.stub │ ├── fieldset_set.yaml.stub │ ├── global.yaml.stub │ ├── global_blueprint.yaml.stub │ ├── home.md.stub │ ├── index.antlers.html.stub │ ├── navigation.yaml.stub │ ├── navigation_blueprint.yaml.stub │ ├── partial.antlers.html.stub │ ├── set.antlers.html.stub │ ├── show.antlers.html.stub │ ├── taxonomy.yaml.stub │ └── taxonomy_blueprint.yaml.stub ├── src ├── Commands │ ├── ClearSite.php │ ├── InstallBlock.php │ ├── InstallCommand.php │ ├── InstallPreset.php │ ├── InstallSet.php │ ├── MakeBlock.php │ ├── MakeCollection.php │ ├── MakeGlobal.php │ ├── MakeNav.php │ ├── MakePartial.php │ ├── MakeSet.php │ ├── MakeTaxonomy.php │ └── Traits │ │ ├── CanClearCache.php │ │ ├── HandleWithCatch.php │ │ └── NeedsValidLicense.php ├── Facades │ └── Registry.php ├── Models │ ├── Block.php │ ├── Collection.php │ ├── Globals.php │ ├── Installable.php │ ├── Nav.php │ ├── Partial.php │ ├── Set.php │ └── Taxonomy.php ├── Operations │ ├── AttachCollectionsToNavigation.php │ ├── AttachTaxonomyToCollections.php │ ├── Copy.php │ ├── Notify.php │ ├── Operation.php │ ├── Rename.php │ ├── Run.php │ ├── Traits │ │ └── CanPickIcon.php │ ├── UpdateArticleSets.php │ ├── UpdatePageBuilder.php │ └── UpdateRole.php ├── RegistryManager.php ├── ServiceProvider.php └── Updates │ ├── UpdateJSONldDateFormatting.php │ └── UpdateRSSFeed.php └── tests ├── Facades └── RegistryTest.php ├── Operations └── OperationTest.php └── TestCase.php /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: studio1902 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /vendor 3 | mix-manifest.json 4 | composer.lock 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/composer.json -------------------------------------------------------------------------------- /config/statamic-peak-commands.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/config/statamic-peak-commands.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/phpunit.xml -------------------------------------------------------------------------------- /resources/blocks/call_to_action/_call_to_action.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/blocks/call_to_action/_call_to_action.antlers.html -------------------------------------------------------------------------------- /resources/blocks/call_to_action/call_to_action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/blocks/call_to_action/call_to_action.yaml -------------------------------------------------------------------------------- /resources/blocks/call_to_action/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/blocks/call_to_action/config.php -------------------------------------------------------------------------------- /resources/blocks/cards/_cards.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/blocks/cards/_cards.antlers.html -------------------------------------------------------------------------------- /resources/blocks/cards/cards.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/blocks/cards/cards.yaml -------------------------------------------------------------------------------- /resources/blocks/cards/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/blocks/cards/config.php -------------------------------------------------------------------------------- /resources/blocks/collection/_collection.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/blocks/collection/_collection.antlers.html -------------------------------------------------------------------------------- /resources/blocks/collection/collection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/blocks/collection/collection.yaml -------------------------------------------------------------------------------- /resources/blocks/collection/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/blocks/collection/config.php -------------------------------------------------------------------------------- /resources/blocks/columns/_columns.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/blocks/columns/_columns.antlers.html -------------------------------------------------------------------------------- /resources/blocks/columns/columns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/blocks/columns/columns.yaml -------------------------------------------------------------------------------- /resources/blocks/columns/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/blocks/columns/config.php -------------------------------------------------------------------------------- /resources/blocks/divider/_divider.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/blocks/divider/_divider.antlers.html -------------------------------------------------------------------------------- /resources/blocks/divider/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/blocks/divider/config.php -------------------------------------------------------------------------------- /resources/blocks/divider/divider.yaml: -------------------------------------------------------------------------------- 1 | title: 'Divider' 2 | fields: [ ] 3 | -------------------------------------------------------------------------------- /resources/blocks/full_width_image/_full_width_image.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/blocks/full_width_image/_full_width_image.antlers.html -------------------------------------------------------------------------------- /resources/blocks/full_width_image/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/blocks/full_width_image/config.php -------------------------------------------------------------------------------- /resources/blocks/full_width_image/full_width_image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/blocks/full_width_image/full_width_image.yaml -------------------------------------------------------------------------------- /resources/blocks/image_and_text/_image_and_text.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/blocks/image_and_text/_image_and_text.antlers.html -------------------------------------------------------------------------------- /resources/blocks/image_and_text/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/blocks/image_and_text/config.php -------------------------------------------------------------------------------- /resources/blocks/image_and_text/image_and_text.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/blocks/image_and_text/image_and_text.yaml -------------------------------------------------------------------------------- /resources/blocks/images_grid/_images_grid.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/blocks/images_grid/_images_grid.antlers.html -------------------------------------------------------------------------------- /resources/blocks/images_grid/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/blocks/images_grid/config.php -------------------------------------------------------------------------------- /resources/blocks/images_grid/images_grid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/blocks/images_grid/images_grid.yaml -------------------------------------------------------------------------------- /resources/blocks/index_content/_index_content.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/blocks/index_content/_index_content.antlers.html -------------------------------------------------------------------------------- /resources/blocks/index_content/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/blocks/index_content/config.php -------------------------------------------------------------------------------- /resources/blocks/index_content/index_content.yaml: -------------------------------------------------------------------------------- 1 | title: 'Index content' 2 | fields: [ ] 3 | -------------------------------------------------------------------------------- /resources/blocks/text_columns/_text_columns.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/blocks/text_columns/_text_columns.antlers.html -------------------------------------------------------------------------------- /resources/blocks/text_columns/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/blocks/text_columns/config.php -------------------------------------------------------------------------------- /resources/blocks/text_columns/text_columns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/blocks/text_columns/text_columns.yaml -------------------------------------------------------------------------------- /resources/presets/availability/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/availability/config.php -------------------------------------------------------------------------------- /resources/presets/availability/content/globals/availability.yaml: -------------------------------------------------------------------------------- 1 | title: Availability 2 | data: 3 | now: false 4 | -------------------------------------------------------------------------------- /resources/presets/availability/resources/blueprints/globals/availability.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/availability/resources/blueprints/globals/availability.yaml -------------------------------------------------------------------------------- /resources/presets/availability/resources/views/components/_availability.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/availability/resources/views/components/_availability.antlers.html -------------------------------------------------------------------------------- /resources/presets/banner/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/banner/config.php -------------------------------------------------------------------------------- /resources/presets/banner/content/globals/banner.yaml: -------------------------------------------------------------------------------- 1 | use_banner: false 2 | -------------------------------------------------------------------------------- /resources/presets/banner/resources/blueprints/globals/banner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/banner/resources/blueprints/globals/banner.yaml -------------------------------------------------------------------------------- /resources/presets/banner/resources/svg/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/banner/resources/svg/close.svg -------------------------------------------------------------------------------- /resources/presets/banner/resources/views/layout/_banner.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/banner/resources/views/layout/_banner.antlers.html -------------------------------------------------------------------------------- /resources/presets/breadcrumbs/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/breadcrumbs/config.php -------------------------------------------------------------------------------- /resources/presets/breadcrumbs/resources/views/navigation/_breadcrumbs.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/breadcrumbs/resources/views/navigation/_breadcrumbs.antlers.html -------------------------------------------------------------------------------- /resources/presets/business_hours/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/business_hours/config.php -------------------------------------------------------------------------------- /resources/presets/business_hours/content/globals/business_hours.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/business_hours/content/globals/business_hours.yaml -------------------------------------------------------------------------------- /resources/presets/business_hours/resources/blueprints/globals/business_hours.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/business_hours/resources/blueprints/globals/business_hours.yaml -------------------------------------------------------------------------------- /resources/presets/business_hours/resources/svg/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/business_hours/resources/svg/phone.svg -------------------------------------------------------------------------------- /resources/presets/business_hours/resources/views/components/_business_hours.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/business_hours/resources/views/components/_business_hours.antlers.html -------------------------------------------------------------------------------- /resources/presets/business_hours/resources/views/components/_call_now.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/business_hours/resources/views/components/_call_now.antlers.html -------------------------------------------------------------------------------- /resources/presets/business_hours/resources/views/snippets/_business_hours.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/business_hours/resources/views/snippets/_business_hours.antlers.html -------------------------------------------------------------------------------- /resources/presets/clients/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/clients/config.php -------------------------------------------------------------------------------- /resources/presets/clients/content/collections/clients.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/clients/content/collections/clients.yaml -------------------------------------------------------------------------------- /resources/presets/clients/resources/blueprints/collections/clients/clients.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/clients/resources/blueprints/collections/clients/clients.yaml -------------------------------------------------------------------------------- /resources/presets/clients/resources/fieldsets/clients.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/clients/resources/fieldsets/clients.yaml -------------------------------------------------------------------------------- /resources/presets/clients/resources/views/page_builder/_clients.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/clients/resources/views/page_builder/_clients.antlers.html -------------------------------------------------------------------------------- /resources/presets/default_blocks/app/FieldTypes/DefaultBlockSelect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/default_blocks/app/FieldTypes/DefaultBlockSelect.php -------------------------------------------------------------------------------- /resources/presets/default_blocks/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/default_blocks/config.php -------------------------------------------------------------------------------- /resources/presets/default_blocks/content/globals/default_blocks.yaml: -------------------------------------------------------------------------------- 1 | title: Default blocks 2 | -------------------------------------------------------------------------------- /resources/presets/default_blocks/resources/blueprints/globals/default_blocks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/default_blocks/resources/blueprints/globals/default_blocks.yaml -------------------------------------------------------------------------------- /resources/presets/default_blocks/resources/fieldsets/default_blocks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/default_blocks/resources/fieldsets/default_blocks.yaml -------------------------------------------------------------------------------- /resources/presets/default_blocks/resources/views/layout/_default_blocks.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/default_blocks/resources/views/layout/_default_blocks.antlers.html -------------------------------------------------------------------------------- /resources/presets/default_blocks/resources/views/page_builder/_default_blocks.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/default_blocks/resources/views/page_builder/_default_blocks.antlers.html -------------------------------------------------------------------------------- /resources/presets/events/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/events/config.php -------------------------------------------------------------------------------- /resources/presets/events/content/collections/events.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/events/content/collections/events.yaml -------------------------------------------------------------------------------- /resources/presets/events/content/collections/pages/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/events/content/collections/pages/events.md -------------------------------------------------------------------------------- /resources/presets/events/resources/blueprints/collections/events/events.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/events/resources/blueprints/collections/events/events.yaml -------------------------------------------------------------------------------- /resources/presets/events/resources/fieldsets/events.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/events/resources/fieldsets/events.yaml -------------------------------------------------------------------------------- /resources/presets/events/resources/fieldsets/index_content.yaml: -------------------------------------------------------------------------------- 1 | title: 'Index content' 2 | fields: [ ] 3 | -------------------------------------------------------------------------------- /resources/presets/events/resources/views/components/_events_item.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/events/resources/views/components/_events_item.antlers.html -------------------------------------------------------------------------------- /resources/presets/events/resources/views/events/index.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/events/resources/views/events/index.antlers.html -------------------------------------------------------------------------------- /resources/presets/events/resources/views/events/show.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/events/resources/views/events/show.antlers.html -------------------------------------------------------------------------------- /resources/presets/events/resources/views/page_builder/_events.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/events/resources/views/page_builder/_events.antlers.html -------------------------------------------------------------------------------- /resources/presets/events/resources/views/page_builder/_index_content.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/events/resources/views/page_builder/_index_content.antlers.html -------------------------------------------------------------------------------- /resources/presets/faq/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/faq/config.php -------------------------------------------------------------------------------- /resources/presets/faq/content/collections/faq.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/faq/content/collections/faq.yaml -------------------------------------------------------------------------------- /resources/presets/faq/resources/blueprints/collections/faq/faq.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/faq/resources/blueprints/collections/faq/faq.yaml -------------------------------------------------------------------------------- /resources/presets/faq/resources/fieldsets/faq.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/faq/resources/fieldsets/faq.yaml -------------------------------------------------------------------------------- /resources/presets/faq/resources/views/page_builder/_faq.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/faq/resources/views/page_builder/_faq.antlers.html -------------------------------------------------------------------------------- /resources/presets/footer/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/footer/config.php -------------------------------------------------------------------------------- /resources/presets/footer/content/navigation/footer.yaml: -------------------------------------------------------------------------------- 1 | title: Footer 2 | collections: 3 | - pages 4 | max_depth: 2 5 | -------------------------------------------------------------------------------- /resources/presets/footer/content/navigation/legal.yaml: -------------------------------------------------------------------------------- 1 | title: Legal 2 | collections: 3 | - pages 4 | max_depth: 1 5 | -------------------------------------------------------------------------------- /resources/presets/footer/resources/blueprints/navigation/footer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/footer/resources/blueprints/navigation/footer.yaml -------------------------------------------------------------------------------- /resources/presets/footer/resources/blueprints/navigation/legal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/footer/resources/blueprints/navigation/legal.yaml -------------------------------------------------------------------------------- /resources/presets/footer/resources/views/layout/_footer.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/footer/resources/views/layout/_footer.antlers.html -------------------------------------------------------------------------------- /resources/presets/hero/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/hero/config.php -------------------------------------------------------------------------------- /resources/presets/hero/resources/fieldsets/hero.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/hero/resources/fieldsets/hero.yaml -------------------------------------------------------------------------------- /resources/presets/hero/resources/views/layout/_hero.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/hero/resources/views/layout/_hero.antlers.html -------------------------------------------------------------------------------- /resources/presets/horizon/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/horizon/config.php -------------------------------------------------------------------------------- /resources/presets/horizon/config/horizon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/horizon/config/horizon.php -------------------------------------------------------------------------------- /resources/presets/image_credits/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/image_credits/config.php -------------------------------------------------------------------------------- /resources/presets/image_credits/resources/blueprints/assets/images.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/image_credits/resources/blueprints/assets/images.yaml -------------------------------------------------------------------------------- /resources/presets/image_credits/resources/fieldsets/image_credits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/image_credits/resources/fieldsets/image_credits.yaml -------------------------------------------------------------------------------- /resources/presets/image_credits/resources/views/page_builder/_image_credits.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/image_credits/resources/views/page_builder/_image_credits.antlers.html -------------------------------------------------------------------------------- /resources/presets/intranet/app/Listeners/SendEmailVerificationNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/intranet/app/Listeners/SendEmailVerificationNotification.php -------------------------------------------------------------------------------- /resources/presets/intranet/app/Listeners/SetUserEmailVerified.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/intranet/app/Listeners/SetUserEmailVerified.php -------------------------------------------------------------------------------- /resources/presets/intranet/app/Models/CustomUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/intranet/app/Models/CustomUser.php -------------------------------------------------------------------------------- /resources/presets/intranet/app/Statamic/CustomUrlExcluder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/intranet/app/Statamic/CustomUrlExcluder.php -------------------------------------------------------------------------------- /resources/presets/intranet/app/http/Controllers/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/intranet/app/http/Controllers/UserController.php -------------------------------------------------------------------------------- /resources/presets/intranet/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/intranet/config.php -------------------------------------------------------------------------------- /resources/presets/intranet/content/collections/pages/account.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/intranet/content/collections/pages/account.md -------------------------------------------------------------------------------- /resources/presets/intranet/content/collections/pages/email-verification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/intranet/content/collections/pages/email-verification.md -------------------------------------------------------------------------------- /resources/presets/intranet/content/collections/pages/login.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/intranet/content/collections/pages/login.md -------------------------------------------------------------------------------- /resources/presets/intranet/content/collections/pages/password-forgotten.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/intranet/content/collections/pages/password-forgotten.md -------------------------------------------------------------------------------- /resources/presets/intranet/content/collections/pages/password-reset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/intranet/content/collections/pages/password-reset.md -------------------------------------------------------------------------------- /resources/presets/intranet/content/collections/pages/register.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/intranet/content/collections/pages/register.md -------------------------------------------------------------------------------- /resources/presets/intranet/content/globals/intranet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/intranet/content/globals/intranet.yaml -------------------------------------------------------------------------------- /resources/presets/intranet/resources/blueprints/globals/intranet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/intranet/resources/blueprints/globals/intranet.yaml -------------------------------------------------------------------------------- /resources/presets/intranet/resources/blueprints/user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/intranet/resources/blueprints/user.yaml -------------------------------------------------------------------------------- /resources/presets/intranet/resources/fieldsets/account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/intranet/resources/fieldsets/account.yaml -------------------------------------------------------------------------------- /resources/presets/intranet/resources/fieldsets/email_verification.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/intranet/resources/fieldsets/email_verification.yaml -------------------------------------------------------------------------------- /resources/presets/intranet/resources/fieldsets/login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/intranet/resources/fieldsets/login.yaml -------------------------------------------------------------------------------- /resources/presets/intranet/resources/fieldsets/password_forgotten.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/intranet/resources/fieldsets/password_forgotten.yaml -------------------------------------------------------------------------------- /resources/presets/intranet/resources/fieldsets/password_reset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/intranet/resources/fieldsets/password_reset.yaml -------------------------------------------------------------------------------- /resources/presets/intranet/resources/fieldsets/register.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/intranet/resources/fieldsets/register.yaml -------------------------------------------------------------------------------- /resources/presets/intranet/resources/views/components/_form_input.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/intranet/resources/views/components/_form_input.antlers.html -------------------------------------------------------------------------------- /resources/presets/intranet/resources/views/components/_login.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/intranet/resources/views/components/_login.antlers.html -------------------------------------------------------------------------------- /resources/presets/intranet/resources/views/page_builder/_account.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/intranet/resources/views/page_builder/_account.antlers.html -------------------------------------------------------------------------------- /resources/presets/intranet/resources/views/page_builder/_email_verification.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/intranet/resources/views/page_builder/_email_verification.antlers.html -------------------------------------------------------------------------------- /resources/presets/intranet/resources/views/page_builder/_login.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/intranet/resources/views/page_builder/_login.antlers.html -------------------------------------------------------------------------------- /resources/presets/intranet/resources/views/page_builder/_password_forgotten.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/intranet/resources/views/page_builder/_password_forgotten.antlers.html -------------------------------------------------------------------------------- /resources/presets/intranet/resources/views/page_builder/_password_reset.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/intranet/resources/views/page_builder/_password_reset.antlers.html -------------------------------------------------------------------------------- /resources/presets/intranet/resources/views/page_builder/_register.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/intranet/resources/views/page_builder/_register.antlers.html -------------------------------------------------------------------------------- /resources/presets/intranet/resources/views/vendor/mail/html/message.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/intranet/resources/views/vendor/mail/html/message.blade.php -------------------------------------------------------------------------------- /resources/presets/language_picker/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/language_picker/config.php -------------------------------------------------------------------------------- /resources/presets/language_picker/resources/views/navigation/_language_picker.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/language_picker/resources/views/navigation/_language_picker.antlers.html -------------------------------------------------------------------------------- /resources/presets/links/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/links/config.php -------------------------------------------------------------------------------- /resources/presets/links/resources/blueprints/collections/pages/links.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/links/resources/blueprints/collections/pages/links.yaml -------------------------------------------------------------------------------- /resources/presets/links/resources/svg/phosphor-fill.icons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/links/resources/svg/phosphor-fill.icons -------------------------------------------------------------------------------- /resources/presets/links/resources/views/links.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/links/resources/views/links.antlers.html -------------------------------------------------------------------------------- /resources/presets/lottie_player/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/lottie_player/config.php -------------------------------------------------------------------------------- /resources/presets/lottie_player/content/assets/animations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/lottie_player/content/assets/animations.yaml -------------------------------------------------------------------------------- /resources/presets/lottie_player/resources/blueprints/assets/animations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/lottie_player/resources/blueprints/assets/animations.yaml -------------------------------------------------------------------------------- /resources/presets/lottie_player/resources/fieldsets/animation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/lottie_player/resources/fieldsets/animation.yaml -------------------------------------------------------------------------------- /resources/presets/lottie_player/resources/views/components/_animation.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/lottie_player/resources/views/components/_animation.antlers.html -------------------------------------------------------------------------------- /resources/presets/lottie_player/resources/views/page_builder/_animation.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/lottie_player/resources/views/page_builder/_animation.antlers.html -------------------------------------------------------------------------------- /resources/presets/mega_menu/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/mega_menu/config.php -------------------------------------------------------------------------------- /resources/presets/mega_menu/content/navigation/main.yaml: -------------------------------------------------------------------------------- 1 | title: Main 2 | collections: 3 | - pages 4 | max_depth: 3 5 | -------------------------------------------------------------------------------- /resources/presets/mega_menu/resources/blueprints/navigation/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/mega_menu/resources/blueprints/navigation/main.yaml -------------------------------------------------------------------------------- /resources/presets/mega_menu/resources/views/navigation/_main_desktop.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/mega_menu/resources/views/navigation/_main_desktop.antlers.html -------------------------------------------------------------------------------- /resources/presets/mega_menu/resources/views/navigation/_main_mobile.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/mega_menu/resources/views/navigation/_main_mobile.antlers.html -------------------------------------------------------------------------------- /resources/presets/modal/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/modal/config.php -------------------------------------------------------------------------------- /resources/presets/modal/resources/fieldsets/invoke_modal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/modal/resources/fieldsets/invoke_modal.yaml -------------------------------------------------------------------------------- /resources/presets/modal/resources/views/components/_invoke_modal.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/modal/resources/views/components/_invoke_modal.antlers.html -------------------------------------------------------------------------------- /resources/presets/modal/resources/views/components/_modal.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/modal/resources/views/components/_modal.antlers.html -------------------------------------------------------------------------------- /resources/presets/news/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/news/config.php -------------------------------------------------------------------------------- /resources/presets/news/content/collections/news.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/news/content/collections/news.yaml -------------------------------------------------------------------------------- /resources/presets/news/content/collections/pages/news.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/news/content/collections/pages/news.md -------------------------------------------------------------------------------- /resources/presets/news/resources/blueprints/collections/news/news.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/news/resources/blueprints/collections/news/news.yaml -------------------------------------------------------------------------------- /resources/presets/news/resources/fieldsets/index_content.yaml: -------------------------------------------------------------------------------- 1 | title: 'Index content' 2 | fields: [ ] 3 | -------------------------------------------------------------------------------- /resources/presets/news/resources/fieldsets/news.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/news/resources/fieldsets/news.yaml -------------------------------------------------------------------------------- /resources/presets/news/resources/views/components/_news_item.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/news/resources/views/components/_news_item.antlers.html -------------------------------------------------------------------------------- /resources/presets/news/resources/views/feed/feed.antlers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/news/resources/views/feed/feed.antlers.xml -------------------------------------------------------------------------------- /resources/presets/news/resources/views/news/index.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/news/resources/views/news/index.antlers.html -------------------------------------------------------------------------------- /resources/presets/news/resources/views/news/show.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/news/resources/views/news/show.antlers.html -------------------------------------------------------------------------------- /resources/presets/news/resources/views/page_builder/_index_content.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/news/resources/views/page_builder/_index_content.antlers.html -------------------------------------------------------------------------------- /resources/presets/news/resources/views/page_builder/_news.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/news/resources/views/page_builder/_news.antlers.html -------------------------------------------------------------------------------- /resources/presets/password_protection/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/password_protection/config.php -------------------------------------------------------------------------------- /resources/presets/password_protection/content/collections/pages/login.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/password_protection/content/collections/pages/login.md -------------------------------------------------------------------------------- /resources/presets/password_protection/resources/fieldsets/login.yaml: -------------------------------------------------------------------------------- 1 | title: Login 2 | fields: [] 3 | -------------------------------------------------------------------------------- /resources/presets/password_protection/resources/fieldsets/protect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/password_protection/resources/fieldsets/protect.yaml -------------------------------------------------------------------------------- /resources/presets/password_protection/resources/views/page_builder/_login.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/password_protection/resources/views/page_builder/_login.antlers.html -------------------------------------------------------------------------------- /resources/presets/pricing/app/Scopes/Multiselect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/pricing/app/Scopes/Multiselect.php -------------------------------------------------------------------------------- /resources/presets/pricing/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/pricing/config.php -------------------------------------------------------------------------------- /resources/presets/pricing/content/collections/features.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/pricing/content/collections/features.yaml -------------------------------------------------------------------------------- /resources/presets/pricing/content/collections/tiers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/pricing/content/collections/tiers.yaml -------------------------------------------------------------------------------- /resources/presets/pricing/content/taxonomies/groups.yaml: -------------------------------------------------------------------------------- 1 | title: Groups 2 | -------------------------------------------------------------------------------- /resources/presets/pricing/resources/blueprints/collections/features/feature.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/pricing/resources/blueprints/collections/features/feature.yaml -------------------------------------------------------------------------------- /resources/presets/pricing/resources/blueprints/collections/tiers/tier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/pricing/resources/blueprints/collections/tiers/tier.yaml -------------------------------------------------------------------------------- /resources/presets/pricing/resources/blueprints/taxonomies/groups/group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/pricing/resources/blueprints/taxonomies/groups/group.yaml -------------------------------------------------------------------------------- /resources/presets/pricing/resources/fieldsets/features.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/pricing/resources/fieldsets/features.yaml -------------------------------------------------------------------------------- /resources/presets/pricing/resources/fieldsets/tiers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/pricing/resources/fieldsets/tiers.yaml -------------------------------------------------------------------------------- /resources/presets/pricing/resources/svg/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/pricing/resources/svg/check.svg -------------------------------------------------------------------------------- /resources/presets/pricing/resources/svg/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/pricing/resources/svg/cross.svg -------------------------------------------------------------------------------- /resources/presets/pricing/resources/views/page_builder/_features.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/pricing/resources/views/page_builder/_features.antlers.html -------------------------------------------------------------------------------- /resources/presets/pricing/resources/views/page_builder/_tiers.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/pricing/resources/views/page_builder/_tiers.antlers.html -------------------------------------------------------------------------------- /resources/presets/search/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/search/config.php -------------------------------------------------------------------------------- /resources/presets/search/resources/views/components/_search_form.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/search/resources/views/components/_search_form.antlers.html -------------------------------------------------------------------------------- /resources/presets/search/resources/views/search.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/search/resources/views/search.antlers.html -------------------------------------------------------------------------------- /resources/presets/secure_downloads/app/Http/Controllers/DownloadController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/secure_downloads/app/Http/Controllers/DownloadController.php -------------------------------------------------------------------------------- /resources/presets/secure_downloads/app/Tags/Download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/secure_downloads/app/Tags/Download.php -------------------------------------------------------------------------------- /resources/presets/secure_downloads/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/secure_downloads/config.php -------------------------------------------------------------------------------- /resources/presets/secure_downloads/content/assets/downloads.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/secure_downloads/content/assets/downloads.yaml -------------------------------------------------------------------------------- /resources/presets/secure_downloads/resources/blueprints/assets/downloads.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/secure_downloads/resources/blueprints/assets/downloads.yaml -------------------------------------------------------------------------------- /resources/presets/secure_downloads/resources/fieldsets/downloads.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/secure_downloads/resources/fieldsets/downloads.yaml -------------------------------------------------------------------------------- /resources/presets/secure_downloads/resources/views/page_builder/_downloads.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/secure_downloads/resources/views/page_builder/_downloads.antlers.html -------------------------------------------------------------------------------- /resources/presets/team_members/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/team_members/config.php -------------------------------------------------------------------------------- /resources/presets/team_members/content/collections/team_members.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/team_members/content/collections/team_members.yaml -------------------------------------------------------------------------------- /resources/presets/team_members/resources/blueprints/collections/team_members/team_members.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/team_members/resources/blueprints/collections/team_members/team_members.yaml -------------------------------------------------------------------------------- /resources/presets/team_members/resources/fieldsets/team_members.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/team_members/resources/fieldsets/team_members.yaml -------------------------------------------------------------------------------- /resources/presets/team_members/resources/views/page_builder/_team_members.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/team_members/resources/views/page_builder/_team_members.antlers.html -------------------------------------------------------------------------------- /resources/presets/testimonials/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/testimonials/config.php -------------------------------------------------------------------------------- /resources/presets/testimonials/content/collections/testimonials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/testimonials/content/collections/testimonials.yaml -------------------------------------------------------------------------------- /resources/presets/testimonials/resources/blueprints/collections/testimonials/testimonials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/testimonials/resources/blueprints/collections/testimonials/testimonials.yaml -------------------------------------------------------------------------------- /resources/presets/testimonials/resources/fieldsets/testimonials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/testimonials/resources/fieldsets/testimonials.yaml -------------------------------------------------------------------------------- /resources/presets/testimonials/resources/views/page_builder/_testimonials.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/testimonials/resources/views/page_builder/_testimonials.antlers.html -------------------------------------------------------------------------------- /resources/presets/theme_toggle/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/theme_toggle/config.php -------------------------------------------------------------------------------- /resources/presets/theme_toggle/resources/views/components/_theme_toggle.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/theme_toggle/resources/views/components/_theme_toggle.antlers.html -------------------------------------------------------------------------------- /resources/presets/vacancies/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/vacancies/config.php -------------------------------------------------------------------------------- /resources/presets/vacancies/content/collections/pages/vacancies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/vacancies/content/collections/pages/vacancies.md -------------------------------------------------------------------------------- /resources/presets/vacancies/content/collections/vacancies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/vacancies/content/collections/vacancies.yaml -------------------------------------------------------------------------------- /resources/presets/vacancies/resources/blueprints/collections/vacancies/vacancies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/vacancies/resources/blueprints/collections/vacancies/vacancies.yaml -------------------------------------------------------------------------------- /resources/presets/vacancies/resources/fieldsets/index_content.yaml: -------------------------------------------------------------------------------- 1 | title: 'Index content' 2 | fields: [ ] 3 | -------------------------------------------------------------------------------- /resources/presets/vacancies/resources/views/components/_vacancies_item.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/vacancies/resources/views/components/_vacancies_item.antlers.html -------------------------------------------------------------------------------- /resources/presets/vacancies/resources/views/page_builder/_index_content.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/vacancies/resources/views/page_builder/_index_content.antlers.html -------------------------------------------------------------------------------- /resources/presets/vacancies/resources/views/vacancies/index.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/vacancies/resources/views/vacancies/index.antlers.html -------------------------------------------------------------------------------- /resources/presets/vacancies/resources/views/vacancies/show.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/presets/vacancies/resources/views/vacancies/show.antlers.html -------------------------------------------------------------------------------- /resources/sets/read_more/_read_more.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/sets/read_more/_read_more.antlers.html -------------------------------------------------------------------------------- /resources/sets/read_more/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/sets/read_more/config.php -------------------------------------------------------------------------------- /resources/sets/read_more/read_more.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/sets/read_more/read_more.yaml -------------------------------------------------------------------------------- /resources/sets/video_self_hosted/_video_self_hosted.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/sets/video_self_hosted/_video_self_hosted.antlers.html -------------------------------------------------------------------------------- /resources/sets/video_self_hosted/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/sets/video_self_hosted/config.php -------------------------------------------------------------------------------- /resources/sets/video_self_hosted/video_self_hosted.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/sets/video_self_hosted/video_self_hosted.yaml -------------------------------------------------------------------------------- /resources/stubs/block.antlers.html.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/stubs/block.antlers.html.stub -------------------------------------------------------------------------------- /resources/stubs/collection.yaml.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/stubs/collection.yaml.stub -------------------------------------------------------------------------------- /resources/stubs/collection_blueprint_private.yaml.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/stubs/collection_blueprint_private.yaml.stub -------------------------------------------------------------------------------- /resources/stubs/collection_blueprint_private_dated.yaml.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/stubs/collection_blueprint_private_dated.yaml.stub -------------------------------------------------------------------------------- /resources/stubs/collection_blueprint_private_dated_no_slug.yaml.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/stubs/collection_blueprint_private_dated_no_slug.yaml.stub -------------------------------------------------------------------------------- /resources/stubs/collection_blueprint_private_no_slug.yaml.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/stubs/collection_blueprint_private_no_slug.yaml.stub -------------------------------------------------------------------------------- /resources/stubs/collection_blueprint_public.yaml.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/stubs/collection_blueprint_public.yaml.stub -------------------------------------------------------------------------------- /resources/stubs/collection_blueprint_public_dated.yaml.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/stubs/collection_blueprint_public_dated.yaml.stub -------------------------------------------------------------------------------- /resources/stubs/collection_blueprint_public_dated_no_slug.yaml.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/stubs/collection_blueprint_public_dated_no_slug.yaml.stub -------------------------------------------------------------------------------- /resources/stubs/collection_blueprint_public_no_slug.yaml.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/stubs/collection_blueprint_public_no_slug.yaml.stub -------------------------------------------------------------------------------- /resources/stubs/fieldset_block.yaml.stub: -------------------------------------------------------------------------------- 1 | title: "{{ name }}" 2 | fields: [ ] 3 | -------------------------------------------------------------------------------- /resources/stubs/fieldset_set.yaml.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/stubs/fieldset_set.yaml.stub -------------------------------------------------------------------------------- /resources/stubs/global.yaml.stub: -------------------------------------------------------------------------------- 1 | title: {{ global_name }} 2 | -------------------------------------------------------------------------------- /resources/stubs/global_blueprint.yaml.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/stubs/global_blueprint.yaml.stub -------------------------------------------------------------------------------- /resources/stubs/home.md.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/stubs/home.md.stub -------------------------------------------------------------------------------- /resources/stubs/index.antlers.html.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/stubs/index.antlers.html.stub -------------------------------------------------------------------------------- /resources/stubs/navigation.yaml.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/stubs/navigation.yaml.stub -------------------------------------------------------------------------------- /resources/stubs/navigation_blueprint.yaml.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/stubs/navigation_blueprint.yaml.stub -------------------------------------------------------------------------------- /resources/stubs/partial.antlers.html.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/stubs/partial.antlers.html.stub -------------------------------------------------------------------------------- /resources/stubs/set.antlers.html.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/stubs/set.antlers.html.stub -------------------------------------------------------------------------------- /resources/stubs/show.antlers.html.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/stubs/show.antlers.html.stub -------------------------------------------------------------------------------- /resources/stubs/taxonomy.yaml.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/stubs/taxonomy.yaml.stub -------------------------------------------------------------------------------- /resources/stubs/taxonomy_blueprint.yaml.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/resources/stubs/taxonomy_blueprint.yaml.stub -------------------------------------------------------------------------------- /src/Commands/ClearSite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/Commands/ClearSite.php -------------------------------------------------------------------------------- /src/Commands/InstallBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/Commands/InstallBlock.php -------------------------------------------------------------------------------- /src/Commands/InstallCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/Commands/InstallCommand.php -------------------------------------------------------------------------------- /src/Commands/InstallPreset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/Commands/InstallPreset.php -------------------------------------------------------------------------------- /src/Commands/InstallSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/Commands/InstallSet.php -------------------------------------------------------------------------------- /src/Commands/MakeBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/Commands/MakeBlock.php -------------------------------------------------------------------------------- /src/Commands/MakeCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/Commands/MakeCollection.php -------------------------------------------------------------------------------- /src/Commands/MakeGlobal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/Commands/MakeGlobal.php -------------------------------------------------------------------------------- /src/Commands/MakeNav.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/Commands/MakeNav.php -------------------------------------------------------------------------------- /src/Commands/MakePartial.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/Commands/MakePartial.php -------------------------------------------------------------------------------- /src/Commands/MakeSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/Commands/MakeSet.php -------------------------------------------------------------------------------- /src/Commands/MakeTaxonomy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/Commands/MakeTaxonomy.php -------------------------------------------------------------------------------- /src/Commands/Traits/CanClearCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/Commands/Traits/CanClearCache.php -------------------------------------------------------------------------------- /src/Commands/Traits/HandleWithCatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/Commands/Traits/HandleWithCatch.php -------------------------------------------------------------------------------- /src/Commands/Traits/NeedsValidLicense.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/Commands/Traits/NeedsValidLicense.php -------------------------------------------------------------------------------- /src/Facades/Registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/Facades/Registry.php -------------------------------------------------------------------------------- /src/Models/Block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/Models/Block.php -------------------------------------------------------------------------------- /src/Models/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/Models/Collection.php -------------------------------------------------------------------------------- /src/Models/Globals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/Models/Globals.php -------------------------------------------------------------------------------- /src/Models/Installable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/Models/Installable.php -------------------------------------------------------------------------------- /src/Models/Nav.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/Models/Nav.php -------------------------------------------------------------------------------- /src/Models/Partial.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/Models/Partial.php -------------------------------------------------------------------------------- /src/Models/Set.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/Models/Set.php -------------------------------------------------------------------------------- /src/Models/Taxonomy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/Models/Taxonomy.php -------------------------------------------------------------------------------- /src/Operations/AttachCollectionsToNavigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/Operations/AttachCollectionsToNavigation.php -------------------------------------------------------------------------------- /src/Operations/AttachTaxonomyToCollections.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/Operations/AttachTaxonomyToCollections.php -------------------------------------------------------------------------------- /src/Operations/Copy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/Operations/Copy.php -------------------------------------------------------------------------------- /src/Operations/Notify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/Operations/Notify.php -------------------------------------------------------------------------------- /src/Operations/Operation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/Operations/Operation.php -------------------------------------------------------------------------------- /src/Operations/Rename.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/Operations/Rename.php -------------------------------------------------------------------------------- /src/Operations/Run.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/Operations/Run.php -------------------------------------------------------------------------------- /src/Operations/Traits/CanPickIcon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/Operations/Traits/CanPickIcon.php -------------------------------------------------------------------------------- /src/Operations/UpdateArticleSets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/Operations/UpdateArticleSets.php -------------------------------------------------------------------------------- /src/Operations/UpdatePageBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/Operations/UpdatePageBuilder.php -------------------------------------------------------------------------------- /src/Operations/UpdateRole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/Operations/UpdateRole.php -------------------------------------------------------------------------------- /src/RegistryManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/RegistryManager.php -------------------------------------------------------------------------------- /src/ServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/ServiceProvider.php -------------------------------------------------------------------------------- /src/Updates/UpdateJSONldDateFormatting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/Updates/UpdateJSONldDateFormatting.php -------------------------------------------------------------------------------- /src/Updates/UpdateRSSFeed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/src/Updates/UpdateRSSFeed.php -------------------------------------------------------------------------------- /tests/Facades/RegistryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/tests/Facades/RegistryTest.php -------------------------------------------------------------------------------- /tests/Operations/OperationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/tests/Operations/OperationTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio1902/statamic-peak-commands/HEAD/tests/TestCase.php --------------------------------------------------------------------------------