-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.cshtml
More file actions
41 lines (38 loc) · 905 Bytes
/
Index.cshtml
File metadata and controls
41 lines (38 loc) · 905 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
@page
@using DevMiniOS.Services
@model DevMiniOS.Views.Index.IndexModel
<!DOCTYPE html>
<html>
<head>
<title>DevMiniOS IDE</title>
<style>
.container {
display: flex;
height: 500px; /* Adjust as needed */
}
.pane {
width: 50%;
padding: 10px;
border: 1px solid #ccc;
overflow: auto;
}
</style>
</head>
<body>
<h1>DevMiniOS IDE</h1>
<div class="container">
<div class="pane">
<h2>DSL Summary</h2>
<pre>@Model.DslSummary</pre>
</div>
<div class="pane">
<h2>Generated Files</h2>
@foreach (var file in Model.GeneratedFiles)
{
<h3>@file.Path</h3>
<pre>@file.Contents</pre>
}
</div>
</div>
</body>
</html>