From f81ccdd5c334c2982df421bef69b0e2d8f810e30 Mon Sep 17 00:00:00 2001 From: Daniel Balk <67603460+Daniel-Balk@users.noreply.github.com> Date: Tue, 4 Apr 2023 20:47:59 +0200 Subject: [PATCH] Create Changelog.razor --- Moonlight/Shared/Views/Changelog.razor | 53 ++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 Moonlight/Shared/Views/Changelog.razor 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