├── .gitignore ├── .husky └── pre-commit ├── Etch.OrchardCore.ThemeBoilerplate.nuspec ├── LICENSE ├── README.md ├── azure-pipeline-theme.yml ├── azure-pipelines.yml └── content ├── .editorconfig ├── .eslintrc ├── .gitignore ├── .husky └── pre-commit ├── .prettierrc ├── .stylelintrc ├── .template.config └── template.json ├── Assets ├── Content │ ├── icon-carousel-indicator.svg │ ├── icon-carousel-next-prev.svg │ ├── icon-chevron-inverted.svg │ ├── icon-chevron.svg │ ├── icon-close-white.svg │ ├── icon-close.svg │ ├── icon-menu-white.svg │ ├── icon-menu.svg │ └── logo-play.svg ├── Fonts │ ├── manuale-v8-latin-700.woff │ ├── manuale-v8-latin-700.woff2 │ ├── manuale-v8-latin-italic.woff │ ├── manuale-v8-latin-italic.woff2 │ ├── manuale-v8-latin-regular.woff │ ├── manuale-v8-latin-regular.woff2 │ ├── work-sans-v9-latin-700.woff │ ├── work-sans-v9-latin-700.woff2 │ ├── work-sans-v9-latin-italic.woff │ ├── work-sans-v9-latin-italic.woff2 │ ├── work-sans-v9-latin-regular.woff │ └── work-sans-v9-latin-regular.woff2 ├── README.md ├── Scripts │ ├── components │ │ ├── addClassOnScroll │ │ │ └── index.ts │ │ ├── carousel │ │ │ └── index.ts │ │ ├── closeMenuOnAnchorClick │ │ │ └── index.ts │ │ ├── gallery │ │ │ └── index.ts │ │ ├── iframeModal │ │ │ └── index.ts │ │ ├── inViewport │ │ │ └── index.ts │ │ ├── nav │ │ │ └── index.ts │ │ ├── parallax │ │ │ └── index.ts │ │ ├── scrollDown │ │ │ └── index.ts │ │ ├── scrollbarWidth │ │ │ └── index.ts │ │ └── toggleNav │ │ │ └── index.ts │ ├── index.ts │ └── utils │ │ ├── debounce.ts │ │ └── keyCode.ts └── Styles │ ├── _fonts.scss │ ├── components │ ├── _all.scss │ ├── bleed │ │ ├── _all.scss │ │ └── _default.scss │ ├── button │ │ ├── _all.scss │ │ ├── _default.scss │ │ ├── _icon.scss │ │ ├── _primary.scss │ │ ├── _secondary.scss │ │ └── _variables.scss │ ├── card │ │ ├── _all.scss │ │ ├── _background.scss │ │ ├── _default.scss │ │ ├── _equal-height.scss │ │ └── _variables.scss │ ├── carousel │ │ ├── _all.scss │ │ ├── _default.scss │ │ └── _variables.scss │ ├── checkboxes │ │ ├── _all.scss │ │ ├── _default.scss │ │ └── _variables.scss │ ├── content-feed │ │ ├── _all.scss │ │ ├── _default.scss │ │ └── _variables.scss │ ├── editor-toolbar │ │ ├── _all.scss │ │ ├── _default.scss │ │ └── _variables.scss │ ├── embed │ │ ├── _all.scss │ │ ├── _default.scss │ │ ├── _ratio-16-9.scss │ │ ├── _ratio-4-3.scss │ │ └── _variables.scss │ ├── fieldset │ │ ├── _all.scss │ │ └── _default.scss │ ├── fixed-content │ │ ├── _all.scss │ │ ├── _default.scss │ │ └── _variables.scss │ ├── flow │ │ ├── _all.scss │ │ ├── _default.scss │ │ └── _variables.scss │ ├── footer │ │ ├── _all.scss │ │ ├── _default.scss │ │ ├── _inverted.scss │ │ └── _variables.scss │ ├── form-group │ │ ├── _all.scss │ │ └── _default.scss │ ├── form │ │ ├── _all.scss │ │ └── _default.scss │ ├── gallery │ │ ├── _all.scss │ │ ├── _default.scss │ │ └── _variables.scss │ ├── group │ │ ├── _all.scss │ │ ├── _default.scss │ │ └── _variables.scss │ ├── header │ │ ├── _all.scss │ │ ├── _default.scss │ │ ├── _fixed.scss │ │ └── _variables.scss │ ├── hero │ │ ├── _all.scss │ │ ├── _default.scss │ │ ├── _gradient.scss │ │ ├── _horizontal.scss │ │ ├── _inverted.scss │ │ ├── _pull-up.scss │ │ ├── _ratio.scss │ │ ├── _spacing.scss │ │ ├── _variables.scss │ │ └── _vertical.scss │ ├── hint │ │ ├── _all.scss │ │ └── _default.scss │ ├── icon │ │ ├── _all.scss │ │ ├── _default.scss │ │ ├── _flag.scss │ │ └── _variables.scss │ ├── image │ │ ├── _all.scss │ │ └── _default.scss │ ├── link │ │ ├── _all.scss │ │ ├── _breakout.scss │ │ ├── _default.scss │ │ ├── _emphasis.scss │ │ ├── _plain-text.scss │ │ ├── _underline-animation.scss │ │ └── _variables.scss │ ├── logo │ │ ├── _all.scss │ │ ├── _default.scss │ │ └── _variables.scss │ ├── logos │ │ ├── _all.scss │ │ ├── _default.scss │ │ └── _variables.scss │ ├── nav │ │ ├── _all.scss │ │ ├── _default.scss │ │ ├── _footer.scss │ │ ├── _primary.scss │ │ ├── _social.scss │ │ └── _variables.scss │ ├── pager │ │ ├── _all.scss │ │ └── _default.scss │ ├── radios │ │ ├── _all.scss │ │ ├── _default.scss │ │ └── _variables.scss │ ├── required │ │ ├── _all.scss │ │ ├── _default.scss │ │ └── _variables.scss │ ├── section │ │ ├── _alignment.scss │ │ ├── _all.scss │ │ ├── _default.scss │ │ ├── _reverse-stacking-order.scss │ │ ├── _spacing.scss │ │ └── _variables.scss │ ├── space │ │ ├── _all.scss │ │ ├── _default.scss │ │ └── _variables.scss │ ├── styled-quote │ │ ├── _all.scss │ │ ├── _default.scss │ │ └── _variables.scss │ ├── tiles │ │ ├── _all.scss │ │ ├── _default.scss │ │ └── _variables.scss │ └── video-modal │ │ ├── _all.scss │ │ ├── _default.scss │ │ └── _variables.scss │ ├── defaults │ ├── _all.scss │ ├── _anchor.scss │ ├── _blockquote.scss │ ├── _body.scss │ ├── _fieldset.scss │ ├── _figure.scss │ ├── _form.scss │ ├── _heading.scss │ ├── _hr.scss │ ├── _html.scss │ ├── _iframe.scss │ ├── _image.scss │ ├── _input.scss │ ├── _label.scss │ ├── _legend.scss │ ├── _ol.scss │ ├── _paragraph.scss │ ├── _picture.scss │ ├── _select.scss │ ├── _selection.scss │ ├── _strong.scss │ ├── _table.scss │ ├── _textarea.scss │ ├── _ul.scss │ ├── _universal.scss │ └── _variables.scss │ ├── helpers │ ├── _align.scss │ ├── _all.scss │ ├── _columns.scss │ ├── _constrain.scss │ ├── _display.scss │ ├── _font.scss │ ├── _gutter.scss │ ├── _hidden.scss │ ├── _inverted.scss │ ├── _list-reset.scss │ ├── _margin.scss │ ├── _padding.scss │ ├── _responsive-display.scss │ ├── _text.scss │ ├── _visually-hidden.scss │ ├── _width.scss │ └── animations │ │ ├── _all.scss │ │ ├── _fade-in.scss │ │ ├── _grow-in.scss │ │ └── _variables.scss │ ├── index.scss │ ├── overrides │ ├── _all.scss │ └── light-gallery │ │ ├── _all.scss │ │ ├── _default.scss │ │ └── _variables.scss │ ├── print │ ├── _all.scss │ ├── _default.scss │ └── _h5bp.scss │ ├── tools │ ├── _all.scss │ ├── _focus-form-element.scss │ ├── _link-styles.scss │ └── _text-heading.scss │ └── variables │ ├── _all.scss │ ├── _animation.scss │ ├── _border.scss │ ├── _breakpoints.scss │ ├── _colour.scss │ ├── _content-width.scss │ ├── _form.scss │ ├── _gutter.scss │ ├── _link.scss │ ├── _scrollbar.scss │ ├── _spacing.scss │ ├── _table.scss │ ├── _typography.scss │ ├── _widths.scss │ └── _z-index.scss ├── Etch.OrchardCore.ThemeBoilerplate.csproj ├── Manifest.cs ├── README.md ├── Recipes ├── Backgrounds │ └── Default │ │ ├── unsplash-1444090542259-1024w.jpg │ │ ├── unsplash-1444090542259-1280w.jpg │ │ ├── unsplash-1444090542259-1440w.jpg │ │ ├── unsplash-1444090542259-1920w.jpg │ │ ├── unsplash-1444090542259-2560w.jpg │ │ ├── unsplash-1444090542259-375w.jpg │ │ ├── unsplash-1444090542259-400w.jpg │ │ ├── unsplash-1444090542259-425w.jpg │ │ └── unsplash-1444090542259-768w.jpg ├── Basic-ContentAndMedia.recipe.json ├── Basic-ContentDefinitions.recipe.json ├── Basic-ContentWidgetGuideOnly.recipe.json ├── Basic-FeaturesAndSettings.recipe.json ├── Basic-QueriesAndIndexes.recipe.json ├── Logos │ ├── Age Ratings │ │ ├── ESRB │ │ │ ├── esrb-10.svg │ │ │ ├── esrb-adults-only.svg │ │ │ ├── esrb-mature.svg │ │ │ ├── esrb-rating-pending.svg │ │ │ └── esrb-teen.svg │ │ └── PEGI │ │ │ ├── pegi-12.jpg │ │ │ ├── pegi-16.jpg │ │ │ ├── pegi-18.jpg │ │ │ ├── pegi-3.jpg │ │ │ ├── pegi-7.jpg │ │ │ ├── pegi-bad-language.jpg │ │ │ ├── pegi-discrimination.jpg │ │ │ ├── pegi-drugs.jpg │ │ │ ├── pegi-fear.jpg │ │ │ ├── pegi-gambling.jpg │ │ │ ├── pegi-sex.jpg │ │ │ └── pegi-violence.jpg │ ├── Platforms │ │ ├── Mobile │ │ │ ├── android.svg │ │ │ ├── apple.svg │ │ │ ├── applearcade.svg │ │ │ ├── appstore.svg │ │ │ ├── googleplay.svg │ │ │ └── ios.svg │ │ ├── Nintendo │ │ │ ├── 3DS │ │ │ │ └── nintendo3ds.svg │ │ │ └── Switch │ │ │ │ └── nintendoswitch.svg │ │ ├── PC │ │ │ ├── Epic Games Store │ │ │ │ └── epicgames-logo.svg │ │ │ ├── GOG │ │ │ │ └── gog-dot-com.svg │ │ │ └── Steam │ │ │ │ ├── steam.svg │ │ │ │ └── steamworks.svg │ │ ├── PlayStation │ │ │ ├── Brand │ │ │ │ └── playstation-brand.svg │ │ │ ├── PS2 │ │ │ │ └── playstation2.svg │ │ │ ├── PS3 │ │ │ │ └── playstation3.svg │ │ │ ├── PS4 │ │ │ │ └── playstation4.svg │ │ │ ├── PS5 │ │ │ │ └── playstation5.svg │ │ │ └── Vita │ │ │ │ └── playstationvita.svg │ │ ├── Twitch │ │ │ └── twitch.svg │ │ └── Xbox │ │ │ ├── Brand │ │ │ ├── xbox-logo.svg │ │ │ └── xbox.svg │ │ │ ├── One │ │ │ ├── xbox-one-colour-no-sphere.svg │ │ │ └── xbox-one-colour.svg │ │ │ ├── Series │ │ │ ├── optimized-for-x.svg │ │ │ ├── xbox-series-x-portrait.svg │ │ │ └── xbox-series.svg │ │ │ └── Services │ │ │ ├── gamepass-horizontal-colour.svg │ │ │ ├── gamepass-vertical-black.svg │ │ │ ├── gamepass-vertical-white.svg │ │ │ ├── smart-delivery.svg │ │ │ └── velocity-architecture.svg │ ├── logo-play-short@1x.svg │ └── logo-play@1x.svg ├── News │ └── Default │ │ ├── example-news-1280w.jpg │ │ └── example-news-400w.jpg ├── Studio-ContentAndMedia.recipe.json ├── Studio-ContentDefinitions.recipe.json ├── Studio-FeaturesAndSettings.recipe.json ├── Studio-QueriesAndIndexes.recipe.json ├── Team │ ├── team-placeholder-1-768w.jpg │ ├── team-placeholder-10-768w.jpg │ ├── team-placeholder-11-768w.jpg │ ├── team-placeholder-12-768w.jpg │ ├── team-placeholder-2-768w.jpg │ ├── team-placeholder-3-768w.jpg │ ├── team-placeholder-4-768w.jpg │ ├── team-placeholder-5-768w.jpg │ ├── team-placeholder-6-768w.jpg │ ├── team-placeholder-7-768w.jpg │ ├── team-placeholder-8-768w.jpg │ └── team-placeholder-9-768w.jpg ├── basic.recipe.json └── studio.recipe.json ├── Views ├── BagPart.liquid ├── BlockField.liquid ├── Content-Page.liquid ├── Content.liquid ├── ContentCulturePickerContainer.cshtml ├── Layout.liquid ├── ListPart.liquid ├── OrchardCore.Diagnostics │ └── Diagnostics │ │ └── Error.liquid ├── OrchardCore.Users │ ├── Account │ │ └── Login.cshtml │ └── ResetPassword │ │ ├── ForgotPassword.cshtml │ │ ├── ForgotPasswordConfirmation.cshtml │ │ ├── ResetPassword.cshtml │ │ └── ResetPasswordConfirmation.cshtml ├── Shared │ └── NotFound.liquid ├── TitlePart.liquid └── _ViewImports.cshtml ├── azure-pipelines.yml ├── nuget.config ├── package.json ├── placement.json ├── public ├── Theme.png └── content │ ├── flags │ ├── de.svg │ ├── en-au.svg │ ├── en-gb.svg │ ├── en-us.svg │ ├── es.svg │ ├── fr.svg │ ├── it.svg │ └── pl.svg │ ├── icon-carousel-indicator.svg │ ├── icon-carousel-next-prev.svg │ ├── icon-chevron-inverted.svg │ ├── icon-chevron.svg │ ├── icon-close-white.svg │ ├── icon-close.svg │ ├── icon-menu-white.svg │ ├── icon-menu.svg │ └── logo-play.svg ├── tsconfig.json └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | *.nupkg 2 | 3 | content/package-lock.json -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /Etch.OrchardCore.ThemeBoilerplate.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/Etch.OrchardCore.ThemeBoilerplate.nuspec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipeline-theme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/azure-pipeline-theme.yml -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /content/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/.editorconfig -------------------------------------------------------------------------------- /content/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/.eslintrc -------------------------------------------------------------------------------- /content/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/.gitignore -------------------------------------------------------------------------------- /content/.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/.husky/pre-commit -------------------------------------------------------------------------------- /content/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/.prettierrc -------------------------------------------------------------------------------- /content/.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/.stylelintrc -------------------------------------------------------------------------------- /content/.template.config/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/.template.config/template.json -------------------------------------------------------------------------------- /content/Assets/Content/icon-carousel-indicator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Content/icon-carousel-indicator.svg -------------------------------------------------------------------------------- /content/Assets/Content/icon-carousel-next-prev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Content/icon-carousel-next-prev.svg -------------------------------------------------------------------------------- /content/Assets/Content/icon-chevron-inverted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Content/icon-chevron-inverted.svg -------------------------------------------------------------------------------- /content/Assets/Content/icon-chevron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Content/icon-chevron.svg -------------------------------------------------------------------------------- /content/Assets/Content/icon-close-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Content/icon-close-white.svg -------------------------------------------------------------------------------- /content/Assets/Content/icon-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Content/icon-close.svg -------------------------------------------------------------------------------- /content/Assets/Content/icon-menu-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Content/icon-menu-white.svg -------------------------------------------------------------------------------- /content/Assets/Content/icon-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Content/icon-menu.svg -------------------------------------------------------------------------------- /content/Assets/Content/logo-play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Content/logo-play.svg -------------------------------------------------------------------------------- /content/Assets/Fonts/manuale-v8-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Fonts/manuale-v8-latin-700.woff -------------------------------------------------------------------------------- /content/Assets/Fonts/manuale-v8-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Fonts/manuale-v8-latin-700.woff2 -------------------------------------------------------------------------------- /content/Assets/Fonts/manuale-v8-latin-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Fonts/manuale-v8-latin-italic.woff -------------------------------------------------------------------------------- /content/Assets/Fonts/manuale-v8-latin-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Fonts/manuale-v8-latin-italic.woff2 -------------------------------------------------------------------------------- /content/Assets/Fonts/manuale-v8-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Fonts/manuale-v8-latin-regular.woff -------------------------------------------------------------------------------- /content/Assets/Fonts/manuale-v8-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Fonts/manuale-v8-latin-regular.woff2 -------------------------------------------------------------------------------- /content/Assets/Fonts/work-sans-v9-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Fonts/work-sans-v9-latin-700.woff -------------------------------------------------------------------------------- /content/Assets/Fonts/work-sans-v9-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Fonts/work-sans-v9-latin-700.woff2 -------------------------------------------------------------------------------- /content/Assets/Fonts/work-sans-v9-latin-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Fonts/work-sans-v9-latin-italic.woff -------------------------------------------------------------------------------- /content/Assets/Fonts/work-sans-v9-latin-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Fonts/work-sans-v9-latin-italic.woff2 -------------------------------------------------------------------------------- /content/Assets/Fonts/work-sans-v9-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Fonts/work-sans-v9-latin-regular.woff -------------------------------------------------------------------------------- /content/Assets/Fonts/work-sans-v9-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Fonts/work-sans-v9-latin-regular.woff2 -------------------------------------------------------------------------------- /content/Assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/README.md -------------------------------------------------------------------------------- /content/Assets/Scripts/components/addClassOnScroll/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Scripts/components/addClassOnScroll/index.ts -------------------------------------------------------------------------------- /content/Assets/Scripts/components/carousel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Scripts/components/carousel/index.ts -------------------------------------------------------------------------------- /content/Assets/Scripts/components/closeMenuOnAnchorClick/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Scripts/components/closeMenuOnAnchorClick/index.ts -------------------------------------------------------------------------------- /content/Assets/Scripts/components/gallery/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Scripts/components/gallery/index.ts -------------------------------------------------------------------------------- /content/Assets/Scripts/components/iframeModal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Scripts/components/iframeModal/index.ts -------------------------------------------------------------------------------- /content/Assets/Scripts/components/inViewport/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Scripts/components/inViewport/index.ts -------------------------------------------------------------------------------- /content/Assets/Scripts/components/nav/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Scripts/components/nav/index.ts -------------------------------------------------------------------------------- /content/Assets/Scripts/components/parallax/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Scripts/components/parallax/index.ts -------------------------------------------------------------------------------- /content/Assets/Scripts/components/scrollDown/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Scripts/components/scrollDown/index.ts -------------------------------------------------------------------------------- /content/Assets/Scripts/components/scrollbarWidth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Scripts/components/scrollbarWidth/index.ts -------------------------------------------------------------------------------- /content/Assets/Scripts/components/toggleNav/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Scripts/components/toggleNav/index.ts -------------------------------------------------------------------------------- /content/Assets/Scripts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Scripts/index.ts -------------------------------------------------------------------------------- /content/Assets/Scripts/utils/debounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Scripts/utils/debounce.ts -------------------------------------------------------------------------------- /content/Assets/Scripts/utils/keyCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Scripts/utils/keyCode.ts -------------------------------------------------------------------------------- /content/Assets/Styles/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/_fonts.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/bleed/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/bleed/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/bleed/_default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/bleed/_default.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/button/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/button/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/button/_default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/button/_default.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/button/_icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/button/_icon.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/button/_primary.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/button/_primary.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/button/_secondary.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/button/_secondary.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/button/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/button/_variables.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/card/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/card/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/card/_background.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/card/_background.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/card/_default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/card/_default.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/card/_equal-height.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/card/_equal-height.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/card/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/card/_variables.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/carousel/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/carousel/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/carousel/_default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/carousel/_default.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/carousel/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/carousel/_variables.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/checkboxes/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/checkboxes/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/checkboxes/_default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/checkboxes/_default.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/checkboxes/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/checkboxes/_variables.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/content-feed/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/content-feed/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/content-feed/_default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/content-feed/_default.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/content-feed/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/content-feed/_variables.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/editor-toolbar/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/editor-toolbar/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/editor-toolbar/_default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/editor-toolbar/_default.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/editor-toolbar/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/editor-toolbar/_variables.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/embed/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/embed/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/embed/_default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/embed/_default.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/embed/_ratio-16-9.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/embed/_ratio-16-9.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/embed/_ratio-4-3.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/embed/_ratio-4-3.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/embed/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/embed/_variables.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/fieldset/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/fieldset/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/fieldset/_default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/fieldset/_default.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/fixed-content/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/fixed-content/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/fixed-content/_default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/fixed-content/_default.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/fixed-content/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/fixed-content/_variables.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/flow/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/flow/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/flow/_default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/flow/_default.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/flow/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/flow/_variables.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/footer/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/footer/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/footer/_default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/footer/_default.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/footer/_inverted.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/footer/_inverted.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/footer/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/footer/_variables.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/form-group/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/form-group/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/form-group/_default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/form-group/_default.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/form/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/form/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/form/_default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/form/_default.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/gallery/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/gallery/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/gallery/_default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/gallery/_default.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/gallery/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/gallery/_variables.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/group/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/group/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/group/_default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/group/_default.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/group/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/group/_variables.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/header/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/header/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/header/_default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/header/_default.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/header/_fixed.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/header/_fixed.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/header/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/header/_variables.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/hero/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/hero/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/hero/_default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/hero/_default.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/hero/_gradient.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/hero/_gradient.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/hero/_horizontal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/hero/_horizontal.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/hero/_inverted.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/hero/_inverted.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/hero/_pull-up.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/hero/_pull-up.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/hero/_ratio.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/hero/_ratio.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/hero/_spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/hero/_spacing.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/hero/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/hero/_variables.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/hero/_vertical.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/hero/_vertical.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/hint/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/hint/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/hint/_default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/hint/_default.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/icon/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/icon/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/icon/_default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/icon/_default.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/icon/_flag.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/icon/_flag.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/icon/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/icon/_variables.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/image/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/image/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/image/_default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/image/_default.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/link/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/link/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/link/_breakout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/link/_breakout.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/link/_default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/link/_default.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/link/_emphasis.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/link/_emphasis.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/link/_plain-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/link/_plain-text.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/link/_underline-animation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/link/_underline-animation.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/link/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/link/_variables.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/logo/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/logo/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/logo/_default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/logo/_default.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/logo/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/logo/_variables.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/logos/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/logos/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/logos/_default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/logos/_default.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/logos/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/logos/_variables.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/nav/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/nav/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/nav/_default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/nav/_default.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/nav/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/nav/_footer.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/nav/_primary.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/nav/_primary.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/nav/_social.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/nav/_social.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/nav/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/nav/_variables.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/pager/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/pager/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/pager/_default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/pager/_default.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/radios/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/radios/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/radios/_default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/radios/_default.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/radios/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/radios/_variables.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/required/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/required/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/required/_default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/required/_default.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/required/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/required/_variables.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/section/_alignment.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/section/_alignment.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/section/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/section/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/section/_default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/section/_default.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/section/_reverse-stacking-order.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/section/_reverse-stacking-order.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/section/_spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/section/_spacing.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/section/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/section/_variables.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/space/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/space/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/space/_default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/space/_default.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/space/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/space/_variables.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/styled-quote/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/styled-quote/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/styled-quote/_default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/styled-quote/_default.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/styled-quote/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/styled-quote/_variables.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/tiles/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/tiles/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/tiles/_default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/tiles/_default.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/tiles/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/tiles/_variables.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/video-modal/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/video-modal/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/video-modal/_default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/video-modal/_default.scss -------------------------------------------------------------------------------- /content/Assets/Styles/components/video-modal/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/components/video-modal/_variables.scss -------------------------------------------------------------------------------- /content/Assets/Styles/defaults/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/defaults/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/defaults/_anchor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/defaults/_anchor.scss -------------------------------------------------------------------------------- /content/Assets/Styles/defaults/_blockquote.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/defaults/_blockquote.scss -------------------------------------------------------------------------------- /content/Assets/Styles/defaults/_body.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/defaults/_body.scss -------------------------------------------------------------------------------- /content/Assets/Styles/defaults/_fieldset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/defaults/_fieldset.scss -------------------------------------------------------------------------------- /content/Assets/Styles/defaults/_figure.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/defaults/_figure.scss -------------------------------------------------------------------------------- /content/Assets/Styles/defaults/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/defaults/_form.scss -------------------------------------------------------------------------------- /content/Assets/Styles/defaults/_heading.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/defaults/_heading.scss -------------------------------------------------------------------------------- /content/Assets/Styles/defaults/_hr.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/defaults/_hr.scss -------------------------------------------------------------------------------- /content/Assets/Styles/defaults/_html.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/defaults/_html.scss -------------------------------------------------------------------------------- /content/Assets/Styles/defaults/_iframe.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/defaults/_iframe.scss -------------------------------------------------------------------------------- /content/Assets/Styles/defaults/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/defaults/_image.scss -------------------------------------------------------------------------------- /content/Assets/Styles/defaults/_input.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/defaults/_input.scss -------------------------------------------------------------------------------- /content/Assets/Styles/defaults/_label.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/defaults/_label.scss -------------------------------------------------------------------------------- /content/Assets/Styles/defaults/_legend.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/defaults/_legend.scss -------------------------------------------------------------------------------- /content/Assets/Styles/defaults/_ol.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/defaults/_ol.scss -------------------------------------------------------------------------------- /content/Assets/Styles/defaults/_paragraph.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/defaults/_paragraph.scss -------------------------------------------------------------------------------- /content/Assets/Styles/defaults/_picture.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/defaults/_picture.scss -------------------------------------------------------------------------------- /content/Assets/Styles/defaults/_select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/defaults/_select.scss -------------------------------------------------------------------------------- /content/Assets/Styles/defaults/_selection.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/defaults/_selection.scss -------------------------------------------------------------------------------- /content/Assets/Styles/defaults/_strong.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/defaults/_strong.scss -------------------------------------------------------------------------------- /content/Assets/Styles/defaults/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/defaults/_table.scss -------------------------------------------------------------------------------- /content/Assets/Styles/defaults/_textarea.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/defaults/_textarea.scss -------------------------------------------------------------------------------- /content/Assets/Styles/defaults/_ul.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/defaults/_ul.scss -------------------------------------------------------------------------------- /content/Assets/Styles/defaults/_universal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/defaults/_universal.scss -------------------------------------------------------------------------------- /content/Assets/Styles/defaults/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/defaults/_variables.scss -------------------------------------------------------------------------------- /content/Assets/Styles/helpers/_align.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/helpers/_align.scss -------------------------------------------------------------------------------- /content/Assets/Styles/helpers/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/helpers/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/helpers/_columns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/helpers/_columns.scss -------------------------------------------------------------------------------- /content/Assets/Styles/helpers/_constrain.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/helpers/_constrain.scss -------------------------------------------------------------------------------- /content/Assets/Styles/helpers/_display.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/helpers/_display.scss -------------------------------------------------------------------------------- /content/Assets/Styles/helpers/_font.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/helpers/_font.scss -------------------------------------------------------------------------------- /content/Assets/Styles/helpers/_gutter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/helpers/_gutter.scss -------------------------------------------------------------------------------- /content/Assets/Styles/helpers/_hidden.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/helpers/_hidden.scss -------------------------------------------------------------------------------- /content/Assets/Styles/helpers/_inverted.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/helpers/_inverted.scss -------------------------------------------------------------------------------- /content/Assets/Styles/helpers/_list-reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/helpers/_list-reset.scss -------------------------------------------------------------------------------- /content/Assets/Styles/helpers/_margin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/helpers/_margin.scss -------------------------------------------------------------------------------- /content/Assets/Styles/helpers/_padding.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/helpers/_padding.scss -------------------------------------------------------------------------------- /content/Assets/Styles/helpers/_responsive-display.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/helpers/_responsive-display.scss -------------------------------------------------------------------------------- /content/Assets/Styles/helpers/_text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/helpers/_text.scss -------------------------------------------------------------------------------- /content/Assets/Styles/helpers/_visually-hidden.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/helpers/_visually-hidden.scss -------------------------------------------------------------------------------- /content/Assets/Styles/helpers/_width.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/helpers/_width.scss -------------------------------------------------------------------------------- /content/Assets/Styles/helpers/animations/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/helpers/animations/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/helpers/animations/_fade-in.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/helpers/animations/_fade-in.scss -------------------------------------------------------------------------------- /content/Assets/Styles/helpers/animations/_grow-in.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/helpers/animations/_grow-in.scss -------------------------------------------------------------------------------- /content/Assets/Styles/helpers/animations/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/helpers/animations/_variables.scss -------------------------------------------------------------------------------- /content/Assets/Styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/index.scss -------------------------------------------------------------------------------- /content/Assets/Styles/overrides/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/overrides/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/overrides/light-gallery/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/overrides/light-gallery/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/overrides/light-gallery/_default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/overrides/light-gallery/_default.scss -------------------------------------------------------------------------------- /content/Assets/Styles/overrides/light-gallery/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/overrides/light-gallery/_variables.scss -------------------------------------------------------------------------------- /content/Assets/Styles/print/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/print/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/print/_default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/print/_default.scss -------------------------------------------------------------------------------- /content/Assets/Styles/print/_h5bp.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/print/_h5bp.scss -------------------------------------------------------------------------------- /content/Assets/Styles/tools/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/tools/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/tools/_focus-form-element.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/tools/_focus-form-element.scss -------------------------------------------------------------------------------- /content/Assets/Styles/tools/_link-styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/tools/_link-styles.scss -------------------------------------------------------------------------------- /content/Assets/Styles/tools/_text-heading.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/tools/_text-heading.scss -------------------------------------------------------------------------------- /content/Assets/Styles/variables/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/variables/_all.scss -------------------------------------------------------------------------------- /content/Assets/Styles/variables/_animation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/variables/_animation.scss -------------------------------------------------------------------------------- /content/Assets/Styles/variables/_border.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/variables/_border.scss -------------------------------------------------------------------------------- /content/Assets/Styles/variables/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/variables/_breakpoints.scss -------------------------------------------------------------------------------- /content/Assets/Styles/variables/_colour.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/variables/_colour.scss -------------------------------------------------------------------------------- /content/Assets/Styles/variables/_content-width.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/variables/_content-width.scss -------------------------------------------------------------------------------- /content/Assets/Styles/variables/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/variables/_form.scss -------------------------------------------------------------------------------- /content/Assets/Styles/variables/_gutter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/variables/_gutter.scss -------------------------------------------------------------------------------- /content/Assets/Styles/variables/_link.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/variables/_link.scss -------------------------------------------------------------------------------- /content/Assets/Styles/variables/_scrollbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/variables/_scrollbar.scss -------------------------------------------------------------------------------- /content/Assets/Styles/variables/_spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/variables/_spacing.scss -------------------------------------------------------------------------------- /content/Assets/Styles/variables/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/variables/_table.scss -------------------------------------------------------------------------------- /content/Assets/Styles/variables/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/variables/_typography.scss -------------------------------------------------------------------------------- /content/Assets/Styles/variables/_widths.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/variables/_widths.scss -------------------------------------------------------------------------------- /content/Assets/Styles/variables/_z-index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Assets/Styles/variables/_z-index.scss -------------------------------------------------------------------------------- /content/Etch.OrchardCore.ThemeBoilerplate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Etch.OrchardCore.ThemeBoilerplate.csproj -------------------------------------------------------------------------------- /content/Manifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Manifest.cs -------------------------------------------------------------------------------- /content/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/README.md -------------------------------------------------------------------------------- /content/Recipes/Backgrounds/Default/unsplash-1444090542259-1024w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Backgrounds/Default/unsplash-1444090542259-1024w.jpg -------------------------------------------------------------------------------- /content/Recipes/Backgrounds/Default/unsplash-1444090542259-1280w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Backgrounds/Default/unsplash-1444090542259-1280w.jpg -------------------------------------------------------------------------------- /content/Recipes/Backgrounds/Default/unsplash-1444090542259-1440w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Backgrounds/Default/unsplash-1444090542259-1440w.jpg -------------------------------------------------------------------------------- /content/Recipes/Backgrounds/Default/unsplash-1444090542259-1920w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Backgrounds/Default/unsplash-1444090542259-1920w.jpg -------------------------------------------------------------------------------- /content/Recipes/Backgrounds/Default/unsplash-1444090542259-2560w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Backgrounds/Default/unsplash-1444090542259-2560w.jpg -------------------------------------------------------------------------------- /content/Recipes/Backgrounds/Default/unsplash-1444090542259-375w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Backgrounds/Default/unsplash-1444090542259-375w.jpg -------------------------------------------------------------------------------- /content/Recipes/Backgrounds/Default/unsplash-1444090542259-400w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Backgrounds/Default/unsplash-1444090542259-400w.jpg -------------------------------------------------------------------------------- /content/Recipes/Backgrounds/Default/unsplash-1444090542259-425w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Backgrounds/Default/unsplash-1444090542259-425w.jpg -------------------------------------------------------------------------------- /content/Recipes/Backgrounds/Default/unsplash-1444090542259-768w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Backgrounds/Default/unsplash-1444090542259-768w.jpg -------------------------------------------------------------------------------- /content/Recipes/Basic-ContentAndMedia.recipe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Basic-ContentAndMedia.recipe.json -------------------------------------------------------------------------------- /content/Recipes/Basic-ContentDefinitions.recipe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Basic-ContentDefinitions.recipe.json -------------------------------------------------------------------------------- /content/Recipes/Basic-ContentWidgetGuideOnly.recipe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Basic-ContentWidgetGuideOnly.recipe.json -------------------------------------------------------------------------------- /content/Recipes/Basic-FeaturesAndSettings.recipe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Basic-FeaturesAndSettings.recipe.json -------------------------------------------------------------------------------- /content/Recipes/Basic-QueriesAndIndexes.recipe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Basic-QueriesAndIndexes.recipe.json -------------------------------------------------------------------------------- /content/Recipes/Logos/Age Ratings/ESRB/esrb-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Age Ratings/ESRB/esrb-10.svg -------------------------------------------------------------------------------- /content/Recipes/Logos/Age Ratings/ESRB/esrb-adults-only.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Age Ratings/ESRB/esrb-adults-only.svg -------------------------------------------------------------------------------- /content/Recipes/Logos/Age Ratings/ESRB/esrb-mature.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Age Ratings/ESRB/esrb-mature.svg -------------------------------------------------------------------------------- /content/Recipes/Logos/Age Ratings/ESRB/esrb-rating-pending.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Age Ratings/ESRB/esrb-rating-pending.svg -------------------------------------------------------------------------------- /content/Recipes/Logos/Age Ratings/ESRB/esrb-teen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Age Ratings/ESRB/esrb-teen.svg -------------------------------------------------------------------------------- /content/Recipes/Logos/Age Ratings/PEGI/pegi-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Age Ratings/PEGI/pegi-12.jpg -------------------------------------------------------------------------------- /content/Recipes/Logos/Age Ratings/PEGI/pegi-16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Age Ratings/PEGI/pegi-16.jpg -------------------------------------------------------------------------------- /content/Recipes/Logos/Age Ratings/PEGI/pegi-18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Age Ratings/PEGI/pegi-18.jpg -------------------------------------------------------------------------------- /content/Recipes/Logos/Age Ratings/PEGI/pegi-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Age Ratings/PEGI/pegi-3.jpg -------------------------------------------------------------------------------- /content/Recipes/Logos/Age Ratings/PEGI/pegi-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Age Ratings/PEGI/pegi-7.jpg -------------------------------------------------------------------------------- /content/Recipes/Logos/Age Ratings/PEGI/pegi-bad-language.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Age Ratings/PEGI/pegi-bad-language.jpg -------------------------------------------------------------------------------- /content/Recipes/Logos/Age Ratings/PEGI/pegi-discrimination.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Age Ratings/PEGI/pegi-discrimination.jpg -------------------------------------------------------------------------------- /content/Recipes/Logos/Age Ratings/PEGI/pegi-drugs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Age Ratings/PEGI/pegi-drugs.jpg -------------------------------------------------------------------------------- /content/Recipes/Logos/Age Ratings/PEGI/pegi-fear.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Age Ratings/PEGI/pegi-fear.jpg -------------------------------------------------------------------------------- /content/Recipes/Logos/Age Ratings/PEGI/pegi-gambling.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Age Ratings/PEGI/pegi-gambling.jpg -------------------------------------------------------------------------------- /content/Recipes/Logos/Age Ratings/PEGI/pegi-sex.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Age Ratings/PEGI/pegi-sex.jpg -------------------------------------------------------------------------------- /content/Recipes/Logos/Age Ratings/PEGI/pegi-violence.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Age Ratings/PEGI/pegi-violence.jpg -------------------------------------------------------------------------------- /content/Recipes/Logos/Platforms/Mobile/android.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Platforms/Mobile/android.svg -------------------------------------------------------------------------------- /content/Recipes/Logos/Platforms/Mobile/apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Platforms/Mobile/apple.svg -------------------------------------------------------------------------------- /content/Recipes/Logos/Platforms/Mobile/applearcade.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Platforms/Mobile/applearcade.svg -------------------------------------------------------------------------------- /content/Recipes/Logos/Platforms/Mobile/appstore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Platforms/Mobile/appstore.svg -------------------------------------------------------------------------------- /content/Recipes/Logos/Platforms/Mobile/googleplay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Platforms/Mobile/googleplay.svg -------------------------------------------------------------------------------- /content/Recipes/Logos/Platforms/Mobile/ios.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Platforms/Mobile/ios.svg -------------------------------------------------------------------------------- /content/Recipes/Logos/Platforms/Nintendo/3DS/nintendo3ds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Platforms/Nintendo/3DS/nintendo3ds.svg -------------------------------------------------------------------------------- /content/Recipes/Logos/Platforms/Nintendo/Switch/nintendoswitch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Platforms/Nintendo/Switch/nintendoswitch.svg -------------------------------------------------------------------------------- /content/Recipes/Logos/Platforms/PC/Epic Games Store/epicgames-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Platforms/PC/Epic Games Store/epicgames-logo.svg -------------------------------------------------------------------------------- /content/Recipes/Logos/Platforms/PC/GOG/gog-dot-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Platforms/PC/GOG/gog-dot-com.svg -------------------------------------------------------------------------------- /content/Recipes/Logos/Platforms/PC/Steam/steam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Platforms/PC/Steam/steam.svg -------------------------------------------------------------------------------- /content/Recipes/Logos/Platforms/PC/Steam/steamworks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Platforms/PC/Steam/steamworks.svg -------------------------------------------------------------------------------- /content/Recipes/Logos/Platforms/PlayStation/Brand/playstation-brand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Platforms/PlayStation/Brand/playstation-brand.svg -------------------------------------------------------------------------------- /content/Recipes/Logos/Platforms/PlayStation/PS2/playstation2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Platforms/PlayStation/PS2/playstation2.svg -------------------------------------------------------------------------------- /content/Recipes/Logos/Platforms/PlayStation/PS3/playstation3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Platforms/PlayStation/PS3/playstation3.svg -------------------------------------------------------------------------------- /content/Recipes/Logos/Platforms/PlayStation/PS4/playstation4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Platforms/PlayStation/PS4/playstation4.svg -------------------------------------------------------------------------------- /content/Recipes/Logos/Platforms/PlayStation/PS5/playstation5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Platforms/PlayStation/PS5/playstation5.svg -------------------------------------------------------------------------------- /content/Recipes/Logos/Platforms/PlayStation/Vita/playstationvita.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Platforms/PlayStation/Vita/playstationvita.svg -------------------------------------------------------------------------------- /content/Recipes/Logos/Platforms/Twitch/twitch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Platforms/Twitch/twitch.svg -------------------------------------------------------------------------------- /content/Recipes/Logos/Platforms/Xbox/Brand/xbox-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Platforms/Xbox/Brand/xbox-logo.svg -------------------------------------------------------------------------------- /content/Recipes/Logos/Platforms/Xbox/Brand/xbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Platforms/Xbox/Brand/xbox.svg -------------------------------------------------------------------------------- /content/Recipes/Logos/Platforms/Xbox/One/xbox-one-colour-no-sphere.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Platforms/Xbox/One/xbox-one-colour-no-sphere.svg -------------------------------------------------------------------------------- /content/Recipes/Logos/Platforms/Xbox/One/xbox-one-colour.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Platforms/Xbox/One/xbox-one-colour.svg -------------------------------------------------------------------------------- /content/Recipes/Logos/Platforms/Xbox/Series/optimized-for-x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Platforms/Xbox/Series/optimized-for-x.svg -------------------------------------------------------------------------------- /content/Recipes/Logos/Platforms/Xbox/Series/xbox-series-x-portrait.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Platforms/Xbox/Series/xbox-series-x-portrait.svg -------------------------------------------------------------------------------- /content/Recipes/Logos/Platforms/Xbox/Series/xbox-series.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Platforms/Xbox/Series/xbox-series.svg -------------------------------------------------------------------------------- /content/Recipes/Logos/Platforms/Xbox/Services/gamepass-horizontal-colour.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Platforms/Xbox/Services/gamepass-horizontal-colour.svg -------------------------------------------------------------------------------- /content/Recipes/Logos/Platforms/Xbox/Services/gamepass-vertical-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Platforms/Xbox/Services/gamepass-vertical-black.svg -------------------------------------------------------------------------------- /content/Recipes/Logos/Platforms/Xbox/Services/gamepass-vertical-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Platforms/Xbox/Services/gamepass-vertical-white.svg -------------------------------------------------------------------------------- /content/Recipes/Logos/Platforms/Xbox/Services/smart-delivery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Platforms/Xbox/Services/smart-delivery.svg -------------------------------------------------------------------------------- /content/Recipes/Logos/Platforms/Xbox/Services/velocity-architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/Platforms/Xbox/Services/velocity-architecture.svg -------------------------------------------------------------------------------- /content/Recipes/Logos/logo-play-short@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/logo-play-short@1x.svg -------------------------------------------------------------------------------- /content/Recipes/Logos/logo-play@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Logos/logo-play@1x.svg -------------------------------------------------------------------------------- /content/Recipes/News/Default/example-news-1280w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/News/Default/example-news-1280w.jpg -------------------------------------------------------------------------------- /content/Recipes/News/Default/example-news-400w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/News/Default/example-news-400w.jpg -------------------------------------------------------------------------------- /content/Recipes/Studio-ContentAndMedia.recipe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Studio-ContentAndMedia.recipe.json -------------------------------------------------------------------------------- /content/Recipes/Studio-ContentDefinitions.recipe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Studio-ContentDefinitions.recipe.json -------------------------------------------------------------------------------- /content/Recipes/Studio-FeaturesAndSettings.recipe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Studio-FeaturesAndSettings.recipe.json -------------------------------------------------------------------------------- /content/Recipes/Studio-QueriesAndIndexes.recipe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Studio-QueriesAndIndexes.recipe.json -------------------------------------------------------------------------------- /content/Recipes/Team/team-placeholder-1-768w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Team/team-placeholder-1-768w.jpg -------------------------------------------------------------------------------- /content/Recipes/Team/team-placeholder-10-768w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Team/team-placeholder-10-768w.jpg -------------------------------------------------------------------------------- /content/Recipes/Team/team-placeholder-11-768w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Team/team-placeholder-11-768w.jpg -------------------------------------------------------------------------------- /content/Recipes/Team/team-placeholder-12-768w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Team/team-placeholder-12-768w.jpg -------------------------------------------------------------------------------- /content/Recipes/Team/team-placeholder-2-768w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Team/team-placeholder-2-768w.jpg -------------------------------------------------------------------------------- /content/Recipes/Team/team-placeholder-3-768w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Team/team-placeholder-3-768w.jpg -------------------------------------------------------------------------------- /content/Recipes/Team/team-placeholder-4-768w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Team/team-placeholder-4-768w.jpg -------------------------------------------------------------------------------- /content/Recipes/Team/team-placeholder-5-768w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Team/team-placeholder-5-768w.jpg -------------------------------------------------------------------------------- /content/Recipes/Team/team-placeholder-6-768w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Team/team-placeholder-6-768w.jpg -------------------------------------------------------------------------------- /content/Recipes/Team/team-placeholder-7-768w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Team/team-placeholder-7-768w.jpg -------------------------------------------------------------------------------- /content/Recipes/Team/team-placeholder-8-768w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Team/team-placeholder-8-768w.jpg -------------------------------------------------------------------------------- /content/Recipes/Team/team-placeholder-9-768w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/Team/team-placeholder-9-768w.jpg -------------------------------------------------------------------------------- /content/Recipes/basic.recipe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/basic.recipe.json -------------------------------------------------------------------------------- /content/Recipes/studio.recipe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Recipes/studio.recipe.json -------------------------------------------------------------------------------- /content/Views/BagPart.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Views/BagPart.liquid -------------------------------------------------------------------------------- /content/Views/BlockField.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Views/BlockField.liquid -------------------------------------------------------------------------------- /content/Views/Content-Page.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Views/Content-Page.liquid -------------------------------------------------------------------------------- /content/Views/Content.liquid: -------------------------------------------------------------------------------- 1 | {{ Model.Content | shape_render }} -------------------------------------------------------------------------------- /content/Views/ContentCulturePickerContainer.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Views/ContentCulturePickerContainer.cshtml -------------------------------------------------------------------------------- /content/Views/Layout.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Views/Layout.liquid -------------------------------------------------------------------------------- /content/Views/ListPart.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Views/ListPart.liquid -------------------------------------------------------------------------------- /content/Views/OrchardCore.Diagnostics/Diagnostics/Error.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Views/OrchardCore.Diagnostics/Diagnostics/Error.liquid -------------------------------------------------------------------------------- /content/Views/OrchardCore.Users/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Views/OrchardCore.Users/Account/Login.cshtml -------------------------------------------------------------------------------- /content/Views/OrchardCore.Users/ResetPassword/ForgotPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Views/OrchardCore.Users/ResetPassword/ForgotPassword.cshtml -------------------------------------------------------------------------------- /content/Views/OrchardCore.Users/ResetPassword/ForgotPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Views/OrchardCore.Users/ResetPassword/ForgotPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /content/Views/OrchardCore.Users/ResetPassword/ResetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Views/OrchardCore.Users/ResetPassword/ResetPassword.cshtml -------------------------------------------------------------------------------- /content/Views/OrchardCore.Users/ResetPassword/ResetPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Views/OrchardCore.Users/ResetPassword/ResetPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /content/Views/Shared/NotFound.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Views/Shared/NotFound.liquid -------------------------------------------------------------------------------- /content/Views/TitlePart.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Views/TitlePart.liquid -------------------------------------------------------------------------------- /content/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /content/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/azure-pipelines.yml -------------------------------------------------------------------------------- /content/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/nuget.config -------------------------------------------------------------------------------- /content/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/package.json -------------------------------------------------------------------------------- /content/placement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/placement.json -------------------------------------------------------------------------------- /content/public/Theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/public/Theme.png -------------------------------------------------------------------------------- /content/public/content/flags/de.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/public/content/flags/de.svg -------------------------------------------------------------------------------- /content/public/content/flags/en-au.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/public/content/flags/en-au.svg -------------------------------------------------------------------------------- /content/public/content/flags/en-gb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/public/content/flags/en-gb.svg -------------------------------------------------------------------------------- /content/public/content/flags/en-us.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/public/content/flags/en-us.svg -------------------------------------------------------------------------------- /content/public/content/flags/es.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/public/content/flags/es.svg -------------------------------------------------------------------------------- /content/public/content/flags/fr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/public/content/flags/fr.svg -------------------------------------------------------------------------------- /content/public/content/flags/it.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/public/content/flags/it.svg -------------------------------------------------------------------------------- /content/public/content/flags/pl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/public/content/flags/pl.svg -------------------------------------------------------------------------------- /content/public/content/icon-carousel-indicator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/public/content/icon-carousel-indicator.svg -------------------------------------------------------------------------------- /content/public/content/icon-carousel-next-prev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/public/content/icon-carousel-next-prev.svg -------------------------------------------------------------------------------- /content/public/content/icon-chevron-inverted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/public/content/icon-chevron-inverted.svg -------------------------------------------------------------------------------- /content/public/content/icon-chevron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/public/content/icon-chevron.svg -------------------------------------------------------------------------------- /content/public/content/icon-close-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/public/content/icon-close-white.svg -------------------------------------------------------------------------------- /content/public/content/icon-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/public/content/icon-close.svg -------------------------------------------------------------------------------- /content/public/content/icon-menu-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/public/content/icon-menu-white.svg -------------------------------------------------------------------------------- /content/public/content/icon-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/public/content/icon-menu.svg -------------------------------------------------------------------------------- /content/public/content/logo-play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/public/content/logo-play.svg -------------------------------------------------------------------------------- /content/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/tsconfig.json -------------------------------------------------------------------------------- /content/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchUK/Etch.OrchardCore.ThemeBoilerplate/HEAD/content/vite.config.js --------------------------------------------------------------------------------