diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2023-02-06 07:11:05 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2023-02-07 07:54:51 +0300 |
commit | a2314e870e1f3f966e45532984e3c76a430334af (patch) | |
tree | dbf52d6299a75afcf1bf4c279d4d8617e957f0a3 /Views/Bundle | |
parent | d1ca742017b061905751568afa117c4498d4e091 (diff) |
Init bundle controller
Diffstat (limited to 'Views/Bundle')
-rw-r--r-- | Views/Bundle/Show.cshtml | 14 |
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> |