├── wwwroot ├── _redirects ├── favicon.ico ├── icon-512.png ├── css │ ├── open-iconic │ │ ├── font │ │ │ ├── fonts │ │ │ │ ├── open-iconic.eot │ │ │ │ ├── open-iconic.otf │ │ │ │ ├── open-iconic.ttf │ │ │ │ ├── open-iconic.woff │ │ │ │ └── open-iconic.svg │ │ │ └── css │ │ │ │ └── open-iconic-bootstrap.min.css │ │ ├── ICON-LICENSE │ │ ├── README.md │ │ └── FONT-LICENSE │ └── app.css ├── appsettings.json ├── service-worker.js ├── manifest.json ├── sample-data │ └── weather.json ├── index.html └── service-worker.published.js ├── Shared ├── MainLayout.razor ├── SiteFooter.razor ├── SurveyPrompt.razor └── NavMenu.razor ├── Models ├── AppSettings.cs └── Post.cs ├── _Imports.razor ├── App.razor ├── Pages ├── About.razor ├── Index.razor └── PostDetails.razor ├── BlazorCosmicBlog.csproj ├── LICENSE ├── BlazorCosmicBlog.sln ├── .github └── workflows │ └── dotnet-core.yml ├── Program.cs ├── README.md └── .gitignore /wwwroot/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmicjs/blazor-blog/master/wwwroot/favicon.ico -------------------------------------------------------------------------------- /wwwroot/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmicjs/blazor-blog/master/wwwroot/icon-512.png -------------------------------------------------------------------------------- /wwwroot/css/open-iconic/font/fonts/open-iconic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmicjs/blazor-blog/master/wwwroot/css/open-iconic/font/fonts/open-iconic.eot -------------------------------------------------------------------------------- /wwwroot/css/open-iconic/font/fonts/open-iconic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmicjs/blazor-blog/master/wwwroot/css/open-iconic/font/fonts/open-iconic.otf -------------------------------------------------------------------------------- /wwwroot/css/open-iconic/font/fonts/open-iconic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmicjs/blazor-blog/master/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf -------------------------------------------------------------------------------- /wwwroot/css/open-iconic/font/fonts/open-iconic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmicjs/blazor-blog/master/wwwroot/css/open-iconic/font/fonts/open-iconic.woff -------------------------------------------------------------------------------- /wwwroot/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "AppSettings": { 3 | "COSMIC_BUCKET_SLUG": "03ed2a30-a597-11e9-8965-1ff07c75b41d", // replace your bucket slug 4 | "COSMIC_READ_KEY": "bkx3hFyF3ceBuDtGZLkQy6SBptFG2MUnFj9BlsZJMChkralSIK" // replace your bucket read key 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Shared/MainLayout.razor: -------------------------------------------------------------------------------- 1 | @inherits LayoutComponentBase 2 | 3 |
6 | 7 |Sorry, there's nothing at this address.
8 |
6 | Blazor is a free and open-source web framework that enables developers to create web apps using C# and HTML.
9 |Cosmic is Headless CMS API and toolkit to build modern apps faster,together.
10 |This application uses both Blazor and Cosmic to bulid next generation apps.
11 |Loading...
11 | } 12 | else 13 | { 14 |Loading...
12 | } 13 | else 14 | { 15 |