|
2 | 2 |
|
3 | 3 | public class BlazorLearningPath
|
4 | 4 | {
|
5 |
| - public readonly List<ContentMetaData> FullContents = new(20); |
| 5 | + public readonly List<ContentMetaData> FullContents = new(21); |
6 | 6 |
|
7 | 7 | public BlazorLearningPath()
|
8 | 8 | {
|
9 | 9 | FullContents =
|
10 |
| - new(20) |
| 10 | + new(21) |
11 | 11 | {
|
12 | 12 | new ContentMetaData
|
13 | 13 | {
|
@@ -268,6 +268,19 @@ public BlazorLearningPath()
|
268 | 268 | Type = "Blazor",
|
269 | 269 | CreatedOn = new DateTime(2022, 8, 7, 22, 30, 0),
|
270 | 270 | ModifiedOn = new DateTime(2022, 8, 7, 22, 30, 0)
|
| 271 | + }, |
| 272 | + new ContentMetaData |
| 273 | + { |
| 274 | + Order = 21, |
| 275 | + Title = "Blazor WASM Dockerizing", |
| 276 | + Author = "Abdul Rahman", |
| 277 | + PosterUrl = "image/blogs/blazor/wasm/blazor-wasm-dockerizing.svg", |
| 278 | + ThumbnailUrl = "image/blogs/blazor/wasm/blazor-wasm-dockerizing.svg", |
| 279 | + ContentUrl = "blogs/blazor-wasm-dockerizing", |
| 280 | + IconUrl = "image/icons/blazor.png", |
| 281 | + Type = "Blazor", |
| 282 | + CreatedOn = new DateTime(2023, 3, 26, 22, 30, 0), |
| 283 | + ModifiedOn = new DateTime(2023, 3, 26, 22, 30, 0) |
271 | 284 | }
|
272 | 285 | };
|
273 | 286 | }
|
|
0 commit comments