Files
zpc-bulletin-board/ZpcBulletinBoard/Pages/Index.cshtml
David Štaleker 28d1630749 prvi
2024-02-23 12:56:54 +01:00

33 lines
796 B
Plaintext

@page
@model IndexModel
@{
ViewData["Title"] = "Urejanje";
}
@section Styles
{
<link rel="stylesheet" href="~/css/index/main.css" asp-append-version="true"/>
}
<h4 class="d-flex justify-content-between align-items-center w-100 font-weight-bold py-1 mb-4">
<span>
<span class="text-muted font-weight-light">Bulletin board /</span> Urejevalnik
</span>
</h4>
<div class="row">
<div id="divCanvas" class="col-12">
</div>
</div>
@section Scripts
{
<script src="~/lib/p5/lib/p5.min.js" asp-append-version="true"></script>
<script src="~/lib/p5.js-svg/dist/p5.svg.js" asp-append-version="true"></script>
<script src="~/js/index/note.js" asp-append-version="true"></script>
<script src="~/js/index/main.js" asp-append-version="true"></script>
}