diff --git a/Moonlight/Shared/Views/Changelog.razor b/Moonlight/Shared/Views/Changelog.razor new file mode 100644 index 00000000..ad68c1e2 --- /dev/null +++ b/Moonlight/Shared/Views/Changelog.razor @@ -0,0 +1,53 @@ +@page "/changelog" + +@{ + List changelog = new List() + { + new[] {"title", "body1", "body2"}, + new[] {"title2", "body3", "body4", "body5"}, + }; + int i = 0; +} + +
+
+
+ @foreach (var prt in changelog) + { + i++; +
+
+ + + + + + + + +

@prt[0]

+
+ +
+
+
+ @{ + var o = prt[1..]; + } +

Changes

+
    + @foreach (var v in o) + { +
  • + @v +
  • + } +
+
+
+
+
+ } +
+
+
\ No newline at end of file