more references

dotnet-7.0
Paul Schneider 2 years ago
parent 76224cda73
commit a2009e41aa
1 changed files with 10 additions and 4 deletions

@ -5,9 +5,18 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>@ViewData["Title"] - Yavsc</title> <title>@ViewData["Title"] - Yavsc</title>
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" /> <link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="~/yavsc.css" asp-append-version="true" />
<link rel="stylesheet" href="~/css/site.css" asp-append-version="true" /> <link rel="stylesheet" href="~/css/site.css" asp-append-version="true" />
<link rel="stylesheet" href="~/Yavsc.styles.css" asp-append-version="true" /> <link rel="stylesheet" href="~/css/main/bootstrap.css" asp-append-version="true" />
<link rel="stylesheet" href="~/css/main/dropzone.css" asp-append-version="true" />
<link rel="stylesheet" href="~/css/main/jquery-ui.css" asp-append-version="true" />
<link rel="stylesheet" href="~/css/main/quill.snow.css" asp-append-version="true" />
<link rel="stylesheet" href="~/css/dark/site.css" asp-append-version="true" />
@await RenderSectionAsync("header") @await RenderSectionAsync("header")
<script src="~/lib/jquery/dist/jquery.min.js"></script>
<script src="~/lib/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
<script src="~/js/site.js" asp-append-version="true"></script>
<script src="~/js/quill.js" asp-append-version="true"></script>
</head> </head>
<body> <body>
<header> <header>
@ -46,9 +55,6 @@
&copy; 2023 - Yavsc - <a asp-area="" asp-controller="Home" asp-action="Privacy">Privacy</a> &copy; 2023 - Yavsc - <a asp-area="" asp-controller="Home" asp-action="Privacy">Privacy</a>
</div> </div>
</footer> </footer>
<script src="~/lib/jquery/dist/jquery.min.js"></script>
<script src="~/lib/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
<script src="~/js/site.js" asp-append-version="true"></script>
@await RenderSectionAsync("scripts") @await RenderSectionAsync("scripts")
</body> </body>
</html> </html>

Loading…