├── .gitignore ├── BlazorPrerendering.sln └── src ├── BlazorPrerendering.Client ├── App.razor ├── BlazorPrerendering.Client.csproj ├── Pages │ ├── Counter.razor │ ├── FetchData.razor │ └── Index.razor ├── Program.cs ├── Shared │ ├── MainLayout.razor │ ├── NavMenu.razor │ └── SurveyPrompt.razor ├── _Imports.razor └── wwwroot │ ├── css │ ├── bootstrap │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ ├── open-iconic │ │ ├── FONT-LICENSE │ │ ├── ICON-LICENSE │ │ ├── README.md │ │ └── font │ │ │ ├── css │ │ │ └── open-iconic-bootstrap.min.css │ │ │ └── fonts │ │ │ ├── open-iconic.eot │ │ │ ├── open-iconic.otf │ │ │ ├── open-iconic.svg │ │ │ ├── open-iconic.ttf │ │ │ └── open-iconic.woff │ └── site.css │ └── sample-data │ └── weather.json └── BlazorPrerendering.Server ├── BlazorPrerendering.Server.csproj ├── Pages └── _Host.cshtml ├── Program.cs ├── Properties └── launchSettings.json ├── Startup.cs ├── appsettings.Development.json └── appsettings.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrissainty/ClientSideBlazorPrerendering/HEAD/.gitignore -------------------------------------------------------------------------------- /BlazorPrerendering.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrissainty/ClientSideBlazorPrerendering/HEAD/BlazorPrerendering.sln -------------------------------------------------------------------------------- /src/BlazorPrerendering.Client/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrissainty/ClientSideBlazorPrerendering/HEAD/src/BlazorPrerendering.Client/App.razor -------------------------------------------------------------------------------- /src/BlazorPrerendering.Client/BlazorPrerendering.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrissainty/ClientSideBlazorPrerendering/HEAD/src/BlazorPrerendering.Client/BlazorPrerendering.Client.csproj -------------------------------------------------------------------------------- /src/BlazorPrerendering.Client/Pages/Counter.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrissainty/ClientSideBlazorPrerendering/HEAD/src/BlazorPrerendering.Client/Pages/Counter.razor -------------------------------------------------------------------------------- /src/BlazorPrerendering.Client/Pages/FetchData.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrissainty/ClientSideBlazorPrerendering/HEAD/src/BlazorPrerendering.Client/Pages/FetchData.razor -------------------------------------------------------------------------------- /src/BlazorPrerendering.Client/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrissainty/ClientSideBlazorPrerendering/HEAD/src/BlazorPrerendering.Client/Pages/Index.razor -------------------------------------------------------------------------------- /src/BlazorPrerendering.Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrissainty/ClientSideBlazorPrerendering/HEAD/src/BlazorPrerendering.Client/Program.cs -------------------------------------------------------------------------------- /src/BlazorPrerendering.Client/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrissainty/ClientSideBlazorPrerendering/HEAD/src/BlazorPrerendering.Client/Shared/MainLayout.razor -------------------------------------------------------------------------------- /src/BlazorPrerendering.Client/Shared/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrissainty/ClientSideBlazorPrerendering/HEAD/src/BlazorPrerendering.Client/Shared/NavMenu.razor -------------------------------------------------------------------------------- /src/BlazorPrerendering.Client/Shared/SurveyPrompt.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrissainty/ClientSideBlazorPrerendering/HEAD/src/BlazorPrerendering.Client/Shared/SurveyPrompt.razor -------------------------------------------------------------------------------- /src/BlazorPrerendering.Client/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrissainty/ClientSideBlazorPrerendering/HEAD/src/BlazorPrerendering.Client/_Imports.razor -------------------------------------------------------------------------------- /src/BlazorPrerendering.Client/wwwroot/css/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrissainty/ClientSideBlazorPrerendering/HEAD/src/BlazorPrerendering.Client/wwwroot/css/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /src/BlazorPrerendering.Client/wwwroot/css/bootstrap/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrissainty/ClientSideBlazorPrerendering/HEAD/src/BlazorPrerendering.Client/wwwroot/css/bootstrap/bootstrap.min.css.map -------------------------------------------------------------------------------- /src/BlazorPrerendering.Client/wwwroot/css/open-iconic/FONT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrissainty/ClientSideBlazorPrerendering/HEAD/src/BlazorPrerendering.Client/wwwroot/css/open-iconic/FONT-LICENSE -------------------------------------------------------------------------------- /src/BlazorPrerendering.Client/wwwroot/css/open-iconic/ICON-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrissainty/ClientSideBlazorPrerendering/HEAD/src/BlazorPrerendering.Client/wwwroot/css/open-iconic/ICON-LICENSE -------------------------------------------------------------------------------- /src/BlazorPrerendering.Client/wwwroot/css/open-iconic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrissainty/ClientSideBlazorPrerendering/HEAD/src/BlazorPrerendering.Client/wwwroot/css/open-iconic/README.md -------------------------------------------------------------------------------- /src/BlazorPrerendering.Client/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrissainty/ClientSideBlazorPrerendering/HEAD/src/BlazorPrerendering.Client/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css -------------------------------------------------------------------------------- /src/BlazorPrerendering.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrissainty/ClientSideBlazorPrerendering/HEAD/src/BlazorPrerendering.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.eot -------------------------------------------------------------------------------- /src/BlazorPrerendering.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrissainty/ClientSideBlazorPrerendering/HEAD/src/BlazorPrerendering.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.otf -------------------------------------------------------------------------------- /src/BlazorPrerendering.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrissainty/ClientSideBlazorPrerendering/HEAD/src/BlazorPrerendering.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.svg -------------------------------------------------------------------------------- /src/BlazorPrerendering.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrissainty/ClientSideBlazorPrerendering/HEAD/src/BlazorPrerendering.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf -------------------------------------------------------------------------------- /src/BlazorPrerendering.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrissainty/ClientSideBlazorPrerendering/HEAD/src/BlazorPrerendering.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.woff -------------------------------------------------------------------------------- /src/BlazorPrerendering.Client/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrissainty/ClientSideBlazorPrerendering/HEAD/src/BlazorPrerendering.Client/wwwroot/css/site.css -------------------------------------------------------------------------------- /src/BlazorPrerendering.Client/wwwroot/sample-data/weather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrissainty/ClientSideBlazorPrerendering/HEAD/src/BlazorPrerendering.Client/wwwroot/sample-data/weather.json -------------------------------------------------------------------------------- /src/BlazorPrerendering.Server/BlazorPrerendering.Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrissainty/ClientSideBlazorPrerendering/HEAD/src/BlazorPrerendering.Server/BlazorPrerendering.Server.csproj -------------------------------------------------------------------------------- /src/BlazorPrerendering.Server/Pages/_Host.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrissainty/ClientSideBlazorPrerendering/HEAD/src/BlazorPrerendering.Server/Pages/_Host.cshtml -------------------------------------------------------------------------------- /src/BlazorPrerendering.Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrissainty/ClientSideBlazorPrerendering/HEAD/src/BlazorPrerendering.Server/Program.cs -------------------------------------------------------------------------------- /src/BlazorPrerendering.Server/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrissainty/ClientSideBlazorPrerendering/HEAD/src/BlazorPrerendering.Server/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/BlazorPrerendering.Server/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrissainty/ClientSideBlazorPrerendering/HEAD/src/BlazorPrerendering.Server/Startup.cs -------------------------------------------------------------------------------- /src/BlazorPrerendering.Server/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrissainty/ClientSideBlazorPrerendering/HEAD/src/BlazorPrerendering.Server/appsettings.Development.json -------------------------------------------------------------------------------- /src/BlazorPrerendering.Server/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrissainty/ClientSideBlazorPrerendering/HEAD/src/BlazorPrerendering.Server/appsettings.json --------------------------------------------------------------------------------