Coding/BinaryDad.Coding/Pages/Index.cshtml
2021-07-18 22:17:18 -04:00

39 lines
799 B
Plaintext

@page
@model IndexModel
@{
ViewData["Title"] = "Home page";
}
@section Scripts
{
<script src="~/js/signalr/dist/browser/signalr.js"></script>
<script src="~/js/hub.js"></script>
<script src="~/js/jotted/jotted.min.js"></script>
<script>
new Jotted(document.querySelector('#editor'), {
files: [{
type: 'html',
content: '<html>\n <body>\n <h1>Hello!</h1>\n </body>\n</html>'
}, {
type: 'css',
content: ''
}, {
type: 'js',
content: ''
}]
})
</script>
}
@section Css
{
<link href="~/css/jotted/jotted.min.css" rel="stylesheet" />
}
<div class="text-center">
<div id="editor"></div>
</div>