├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── Speedy.sln ├── cleanup ├── cleanup_speedy.ps1 └── cleanup_speedy_sitecore.ps1 ├── nuget.config ├── packages.config ├── sitecore_pack ├── 10 │ ├── Sitecore Speedy-v1.3.zip │ ├── Sitecore Speedy-v2.0.1.zip │ ├── Sitecore Speedy-v2.0.zip │ └── SitecoreSpeedyPackage.xml ├── 10.1 │ ├── Sitecore Speedy-v2.1.0.zip │ └── SitecoreSpeedyPackage.xml ├── 9.1 │ ├── Sitecore Speedy-1.0.zip │ └── SitecoreSpeedyPackage.xml └── 9.3 │ ├── Sitecore Speedy-9.3.zip │ └── SitecoreSpeedyPackage.xml └── src └── Foundation └── Speedy ├── code ├── .npmrc ├── App_Config │ └── Include │ │ └── Speedy │ │ └── Foundation │ │ └── Foundation.Speedy.Serialization.config ├── Extensions │ └── QuickExtensions.cs ├── Model │ ├── Filters │ │ └── Filters.cs │ └── SpeedyLayoutModel.cs ├── Properties │ └── AssemblyInfo.cs ├── Scripts │ ├── lazy.js │ └── mobile-vanilla-critical.js ├── Settings │ └── SpeedyGenerationSettings.cs ├── Sitecore.Foundation.Speedy.csproj ├── Speedy │ ├── SpeedyAssetLinks.cs │ └── SpeedyAssetLinksGenerator.cs ├── SpeedyConstants.cs ├── Views │ ├── Speedy │ │ ├── Critical.cshtml │ │ ├── Lazy.cshtml │ │ ├── OriginalScriptsLoader.cshtml │ │ ├── OriginalStylesLoader.cshtml │ │ ├── SpeedyJavascriptLoader.cshtml │ │ ├── SpeedyJavascriptLoaderSettings.cshtml │ │ ├── SpeedyJavascriptPreLoader.cshtml │ │ └── SpeedyStylesLoader.cshtml │ └── SxaLayout │ │ └── SxaLayoutPageSpeed.cshtml ├── package.json └── packages.config └── serialization ├── SpeedyRenderings ├── Speedy.yml └── Speedy │ ├── SpeedyCriticalCss.yml │ ├── SpeedyJavascriptLoader.yml │ ├── SpeedyJavascriptPreLoader.yml │ ├── SpeedyOriginalScriptsLoader.yml │ ├── SpeedyOriginalStylesLoader.yml │ └── SpeedyStylesLoader.yml ├── SpeedySXALayout ├── Speedy.yml └── Speedy │ ├── MVC.yml │ └── MVC │ └── MVC Layout Page Speed.yml ├── SpeedySettings ├── Speedy.yml └── Speedy │ └── Speedy Global Settings.yml └── SpeedyTemplates ├── Speedy.yml └── Speedy ├── _Critical.yml ├── _Critical ├── Speedy.yml ├── Speedy │ └── SpecialCaseCriticalCSS.yml └── __Standard Values.yml ├── _SpeedyGlobalSettings.yml ├── _SpeedyGlobalSettings ├── Global Speed Filters.yml ├── Global Speed Filters │ └── CSSFilter.yml ├── Global Speed Settings.yml ├── Global Speed Settings │ ├── CookieExpirationDays.yml │ ├── DeferCSSLoadForMilliseconds.yml │ ├── DeferFallbackForMilliseconds.yml │ ├── DeferJSLoadForMilliseconds.yml │ └── EnableDebugMode.yml └── __Standard Values.yml ├── _SpeedyPage.yml ├── _SpeedyPage └── __Standard Values.yml ├── _SpeedyPageSettings.yml └── _SpeedyPageSettings ├── Speedy.yml ├── Speedy ├── CssFallbackSelector.yml ├── EnableJavascriptLoadDefer.yml ├── EnableStylesheetLoadDefer.yml ├── EveryLoadVanillaJavscriptFile.yml ├── MobileCriticalJavascript.yml ├── OnePassCookieEnabled.yml └── SpeedyEnabled.yml └── __Standard Values.yml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/README.md -------------------------------------------------------------------------------- /Speedy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/Speedy.sln -------------------------------------------------------------------------------- /cleanup/cleanup_speedy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/cleanup/cleanup_speedy.ps1 -------------------------------------------------------------------------------- /cleanup/cleanup_speedy_sitecore.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/cleanup/cleanup_speedy_sitecore.ps1 -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/nuget.config -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/packages.config -------------------------------------------------------------------------------- /sitecore_pack/10.1/Sitecore Speedy-v2.1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/sitecore_pack/10.1/Sitecore Speedy-v2.1.0.zip -------------------------------------------------------------------------------- /sitecore_pack/10.1/SitecoreSpeedyPackage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/sitecore_pack/10.1/SitecoreSpeedyPackage.xml -------------------------------------------------------------------------------- /sitecore_pack/10/Sitecore Speedy-v1.3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/sitecore_pack/10/Sitecore Speedy-v1.3.zip -------------------------------------------------------------------------------- /sitecore_pack/10/Sitecore Speedy-v2.0.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/sitecore_pack/10/Sitecore Speedy-v2.0.1.zip -------------------------------------------------------------------------------- /sitecore_pack/10/Sitecore Speedy-v2.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/sitecore_pack/10/Sitecore Speedy-v2.0.zip -------------------------------------------------------------------------------- /sitecore_pack/10/SitecoreSpeedyPackage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/sitecore_pack/10/SitecoreSpeedyPackage.xml -------------------------------------------------------------------------------- /sitecore_pack/9.1/Sitecore Speedy-1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/sitecore_pack/9.1/Sitecore Speedy-1.0.zip -------------------------------------------------------------------------------- /sitecore_pack/9.1/SitecoreSpeedyPackage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/sitecore_pack/9.1/SitecoreSpeedyPackage.xml -------------------------------------------------------------------------------- /sitecore_pack/9.3/Sitecore Speedy-9.3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/sitecore_pack/9.3/Sitecore Speedy-9.3.zip -------------------------------------------------------------------------------- /sitecore_pack/9.3/SitecoreSpeedyPackage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/sitecore_pack/9.3/SitecoreSpeedyPackage.xml -------------------------------------------------------------------------------- /src/Foundation/Speedy/code/.npmrc: -------------------------------------------------------------------------------- 1 | puppeteer_skip_chromium_download=false -------------------------------------------------------------------------------- /src/Foundation/Speedy/code/App_Config/Include/Speedy/Foundation/Foundation.Speedy.Serialization.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/code/App_Config/Include/Speedy/Foundation/Foundation.Speedy.Serialization.config -------------------------------------------------------------------------------- /src/Foundation/Speedy/code/Extensions/QuickExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/code/Extensions/QuickExtensions.cs -------------------------------------------------------------------------------- /src/Foundation/Speedy/code/Model/Filters/Filters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/code/Model/Filters/Filters.cs -------------------------------------------------------------------------------- /src/Foundation/Speedy/code/Model/SpeedyLayoutModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/code/Model/SpeedyLayoutModel.cs -------------------------------------------------------------------------------- /src/Foundation/Speedy/code/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/code/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Foundation/Speedy/code/Scripts/lazy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/code/Scripts/lazy.js -------------------------------------------------------------------------------- /src/Foundation/Speedy/code/Scripts/mobile-vanilla-critical.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/code/Scripts/mobile-vanilla-critical.js -------------------------------------------------------------------------------- /src/Foundation/Speedy/code/Settings/SpeedyGenerationSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/code/Settings/SpeedyGenerationSettings.cs -------------------------------------------------------------------------------- /src/Foundation/Speedy/code/Sitecore.Foundation.Speedy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/code/Sitecore.Foundation.Speedy.csproj -------------------------------------------------------------------------------- /src/Foundation/Speedy/code/Speedy/SpeedyAssetLinks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/code/Speedy/SpeedyAssetLinks.cs -------------------------------------------------------------------------------- /src/Foundation/Speedy/code/Speedy/SpeedyAssetLinksGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/code/Speedy/SpeedyAssetLinksGenerator.cs -------------------------------------------------------------------------------- /src/Foundation/Speedy/code/SpeedyConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/code/SpeedyConstants.cs -------------------------------------------------------------------------------- /src/Foundation/Speedy/code/Views/Speedy/Critical.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/code/Views/Speedy/Critical.cshtml -------------------------------------------------------------------------------- /src/Foundation/Speedy/code/Views/Speedy/Lazy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/code/Views/Speedy/Lazy.cshtml -------------------------------------------------------------------------------- /src/Foundation/Speedy/code/Views/Speedy/OriginalScriptsLoader.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/code/Views/Speedy/OriginalScriptsLoader.cshtml -------------------------------------------------------------------------------- /src/Foundation/Speedy/code/Views/Speedy/OriginalStylesLoader.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/code/Views/Speedy/OriginalStylesLoader.cshtml -------------------------------------------------------------------------------- /src/Foundation/Speedy/code/Views/Speedy/SpeedyJavascriptLoader.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/code/Views/Speedy/SpeedyJavascriptLoader.cshtml -------------------------------------------------------------------------------- /src/Foundation/Speedy/code/Views/Speedy/SpeedyJavascriptLoaderSettings.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/code/Views/Speedy/SpeedyJavascriptLoaderSettings.cshtml -------------------------------------------------------------------------------- /src/Foundation/Speedy/code/Views/Speedy/SpeedyJavascriptPreLoader.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/code/Views/Speedy/SpeedyJavascriptPreLoader.cshtml -------------------------------------------------------------------------------- /src/Foundation/Speedy/code/Views/Speedy/SpeedyStylesLoader.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/code/Views/Speedy/SpeedyStylesLoader.cshtml -------------------------------------------------------------------------------- /src/Foundation/Speedy/code/Views/SxaLayout/SxaLayoutPageSpeed.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/code/Views/SxaLayout/SxaLayoutPageSpeed.cshtml -------------------------------------------------------------------------------- /src/Foundation/Speedy/code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/code/package.json -------------------------------------------------------------------------------- /src/Foundation/Speedy/code/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/code/packages.config -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedyRenderings/Speedy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedyRenderings/Speedy.yml -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedyRenderings/Speedy/SpeedyCriticalCss.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedyRenderings/Speedy/SpeedyCriticalCss.yml -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedyRenderings/Speedy/SpeedyJavascriptLoader.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedyRenderings/Speedy/SpeedyJavascriptLoader.yml -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedyRenderings/Speedy/SpeedyJavascriptPreLoader.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedyRenderings/Speedy/SpeedyJavascriptPreLoader.yml -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedyRenderings/Speedy/SpeedyOriginalScriptsLoader.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedyRenderings/Speedy/SpeedyOriginalScriptsLoader.yml -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedyRenderings/Speedy/SpeedyOriginalStylesLoader.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedyRenderings/Speedy/SpeedyOriginalStylesLoader.yml -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedyRenderings/Speedy/SpeedyStylesLoader.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedyRenderings/Speedy/SpeedyStylesLoader.yml -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedySXALayout/Speedy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedySXALayout/Speedy.yml -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedySXALayout/Speedy/MVC.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedySXALayout/Speedy/MVC.yml -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedySXALayout/Speedy/MVC/MVC Layout Page Speed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedySXALayout/Speedy/MVC/MVC Layout Page Speed.yml -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedySettings/Speedy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedySettings/Speedy.yml -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedySettings/Speedy/Speedy Global Settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedySettings/Speedy/Speedy Global Settings.yml -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy.yml -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_Critical.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_Critical.yml -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_Critical/Speedy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_Critical/Speedy.yml -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_Critical/Speedy/SpecialCaseCriticalCSS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_Critical/Speedy/SpecialCaseCriticalCSS.yml -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_Critical/__Standard Values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_Critical/__Standard Values.yml -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyGlobalSettings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyGlobalSettings.yml -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyGlobalSettings/Global Speed Filters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyGlobalSettings/Global Speed Filters.yml -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyGlobalSettings/Global Speed Filters/CSSFilter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyGlobalSettings/Global Speed Filters/CSSFilter.yml -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyGlobalSettings/Global Speed Settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyGlobalSettings/Global Speed Settings.yml -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyGlobalSettings/Global Speed Settings/CookieExpirationDays.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyGlobalSettings/Global Speed Settings/CookieExpirationDays.yml -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyGlobalSettings/Global Speed Settings/DeferCSSLoadForMilliseconds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyGlobalSettings/Global Speed Settings/DeferCSSLoadForMilliseconds.yml -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyGlobalSettings/Global Speed Settings/DeferFallbackForMilliseconds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyGlobalSettings/Global Speed Settings/DeferFallbackForMilliseconds.yml -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyGlobalSettings/Global Speed Settings/DeferJSLoadForMilliseconds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyGlobalSettings/Global Speed Settings/DeferJSLoadForMilliseconds.yml -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyGlobalSettings/Global Speed Settings/EnableDebugMode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyGlobalSettings/Global Speed Settings/EnableDebugMode.yml -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyGlobalSettings/__Standard Values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyGlobalSettings/__Standard Values.yml -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyPage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyPage.yml -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyPage/__Standard Values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyPage/__Standard Values.yml -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyPageSettings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyPageSettings.yml -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyPageSettings/Speedy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyPageSettings/Speedy.yml -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyPageSettings/Speedy/CssFallbackSelector.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyPageSettings/Speedy/CssFallbackSelector.yml -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyPageSettings/Speedy/EnableJavascriptLoadDefer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyPageSettings/Speedy/EnableJavascriptLoadDefer.yml -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyPageSettings/Speedy/EnableStylesheetLoadDefer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyPageSettings/Speedy/EnableStylesheetLoadDefer.yml -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyPageSettings/Speedy/EveryLoadVanillaJavscriptFile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyPageSettings/Speedy/EveryLoadVanillaJavscriptFile.yml -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyPageSettings/Speedy/MobileCriticalJavascript.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyPageSettings/Speedy/MobileCriticalJavascript.yml -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyPageSettings/Speedy/OnePassCookieEnabled.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyPageSettings/Speedy/OnePassCookieEnabled.yml -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyPageSettings/Speedy/SpeedyEnabled.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyPageSettings/Speedy/SpeedyEnabled.yml -------------------------------------------------------------------------------- /src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyPageSettings/__Standard Values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aceik/Sitecore-Speedy/HEAD/src/Foundation/Speedy/serialization/SpeedyTemplates/Speedy/_SpeedyPageSettings/__Standard Values.yml --------------------------------------------------------------------------------