summaryrefslogtreecommitdiff
path: root/Views/Bundle/Show.cshtml
diff options
context:
space:
mode:
authorSergey Chebotar <s.chebotar@gmail.com>2023-02-06 07:11:05 +0300
committerSergey Chebotar <s.chebotar@gmail.com>2023-02-06 07:11:05 +0300
commite0085417df71c69414cf90895e106bb13c34c4db (patch)
treef1eb75b5b3cf4a739ed35d63f69c4522a1c3c307 /Views/Bundle/Show.cshtml
parent3f54d070e72955db80f410ba74a73846df1fbe09 (diff)
Init bundle controller
Diffstat (limited to 'Views/Bundle/Show.cshtml')
-rw-r--r--Views/Bundle/Show.cshtml14
1 files changed, 14 insertions, 0 deletions
diff --git a/Views/Bundle/Show.cshtml b/Views/Bundle/Show.cshtml
new file mode 100644
index 0000000..8d3e055
--- /dev/null
+++ b/Views/Bundle/Show.cshtml
@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+
+<html>
+
+<head>
+ <title>@Model?.Name</title>
+</head>
+
+<body>
+ <p>@Model?.Name</p>
+ <p>@Model?.Description</p>
+</body>
+
+</html>