裕隆城折扣合作@中興低碳 折扣報表
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

36 lignes
1.3KB

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>CouponReport</title>
  7. <link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
  8. <link rel="stylesheet" href="~/css/site.css" asp-append-version="true" />
  9. <link rel="stylesheet" href="~/CouponReport.styles.css" asp-append-version="true" />
  10. </head>
  11. <body>
  12. <header>
  13. <nav class="navbar navbar-expand-sm navbar-toggleable-sm navbar-light bg-white border-bottom box-shadow mb-3">
  14. <div class="container-fluid">
  15. <a class="navbar-brand" asp-area="" asp-controller="Report" asp-action="Index">折扣報表系統</a>
  16. </div>
  17. </nav>
  18. </header>
  19. <div class="container-fluid px-4">
  20. <main role="main" class="pb-3">
  21. @RenderBody()
  22. </main>
  23. </div>
  24. <footer class="border-top footer text-muted">
  25. <div class="container-fluid px-4">
  26. &copy; 2025 - 折扣報表系統
  27. </div>
  28. </footer>
  29. <script src="~/lib/jquery/dist/jquery.min.js"></script>
  30. <script src="~/lib/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
  31. <script src="~/js/site.js" asp-append-version="true"></script>
  32. @await RenderSectionAsync("Scripts", required: false)
  33. </body>
  34. </html>