ASCU_ALL/ShowTrend_tmp3/ShowTrend3/Views/Shared/_Layout.cshtml

20 lines
641 B
Plaintext
Raw Normal View History

2021-11-12 15:00:41 +05:00
<!DOCTYPE html>
<html lang="ru">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta charset="utf-8" />
<title>@ViewData["Title"]</title>
<link rel="stylesheet" href="~/lib/Bootstrap/css/bootstrap.css">
@RenderSection("Insert_Styles", required: false)
</head>
<body>
<div class="container">
@RenderBody()
</div>
<script src="~/lib/JQuery/jquery-3.3.1.js"></script>
<script src="~/lib/Popper/umd/popper.js"></script>
<script src="~/lib/Bootstrap/js/bootstrap.bundle.js"></script>
@RenderSection("Scripts", required: false)
</body>
</html>