Coding/BinaryDad.Coding/Pages/Index.cshtml

39 lines
799 B
Plaintext
Raw Normal View History

2021-07-19 00:56:02 +00:00
@page
@model IndexModel
@{
ViewData["Title"] = "Home page";
}
2021-07-19 01:24:08 +00:00
@section Scripts
{
<script src="~/js/signalr/dist/browser/signalr.js"></script>
<script src="~/js/hub.js"></script>
2021-07-19 02:17:18 +00:00
<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>
}
2021-07-19 01:24:08 +00:00
2021-07-19 02:17:18 +00:00
@section Css
{
<link href="~/css/jotted/jotted.min.css" rel="stylesheet" />
}
2021-07-19 02:17:18 +00:00
<div class="text-center">
2021-07-19 02:17:18 +00:00
<div id="editor"></div>
2021-07-19 01:24:08 +00:00
2021-07-19 00:56:02 +00:00
</div>