-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
132 lines (132 loc) · 3.67 KB
/
index.html
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<html>
<head>
<link href="./halfmoon-1.1.1/css/halfmoon.min.css" rel="stylesheet" />
<script src="./halfmoon-1.1.1/js/halfmoon.min.js"></script>
<script src="./jszip/dist/jszip.min.js"></script>
<script src="./index.js"></script>
<script src="./marked-master/marked.min.js"></script>
<script src="./switch.js"></script>
<script src="./toc.js"></script>
<script src="./DOMPurify-main/dist/purify.min.js"></script>
<script src="./getCookie.js"></script>
<script src="./badWords.js"></script>
<script src="./profanityfilter.js"></script>
<link rel="stylesheet" href="./fontawesome-free-6.0.0-web/css/all.css">
<meta charset="UTF-8" />
<title>myprj</title>
<style>
img {
max-width: 100%;
height: auto;
width: auto\9; /* ie8 */
}
.grid-container {
display: grid;
}
</style>
</head>
<body
data-dm-shortcut-enabled="true"
data-sidebar-shortcut-enabled="true"
data-set-preferred-mode-onload="true"
class="with-custom-webkit-scrollbars with-custom-css-scrollbars"
>
<div
class="page-wrapper with-navbar with-sidebar"
data-sidebar-type="overlayed-sm-and-down"
>
<div class="sticky-alerts"></div>
<nav class="navbar justify-content-between">
<div class="custom-file d-flex mr-10">
<input type="file" id="prj-input-1" accept="*.myprj" />
<label for="prj-input-1"><i class="fa-solid fa-file-arrow-up"></i></label>
</div>
<div class="btn-group" role="group" aria-label="Basic example">
<button
class="btn"
type="button"
onclick="_switch('instructions')"
id="instructions"
>
<i class="fa-solid fa-file"></i>
</button>
<button
class="btn"
type="button"
onclick="_switch('images')"
id="images"
>
<i class="fa-solid fa-images"></i>
</button>
<button
class="btn"
type="button"
onclick="_switch('info')"
id="info"
>
<i class="fa-solid fa-circle-info"></i>
</button>
</div>
<button class="btn btn-danger px-md-10" type="button">
<i class="fa-solid fa-gears"></i>
</button>
</nav>
<div
class="sidebar-overlay"
onclick="halfmoon.toggleSidebar()"
></div>
<div id="_sidebar" class="sidebar"></div>
<div class="content-wrapper">
<div id="_index_">
<h1 class="text-center mx-5">myprj</h1>
<div id="js-warning" class="alert alert-danger" role="alert">
<h4 class="alert-heading">javascript disabled</h4>
if your seeing this, it is because javascript is disabled. you need to enable javascript in order for this site to work.
</div>
</div>
<div id="_instructions"></div>
<div id="_images">
<div class="container-fluid">
<div id="_images_grid" class="row"></div>
</div>
</div>
<div style="display: none" id="_code"></div>
<div style="display: none" id="_3d"></div>
<div style="display: none" id="_pcbs"></div>
<div style="display: none" id="_sch"></div>
<div style="display: none" id="_bom"></div>
<div style="display: none" id="_info">
<table class="table">
<tbody>
<tr>
<th>title</th>
<td class="text-right" id="info-title">
example
</td>
</tr>
<tr>
<th>description</th>
<td class="text-right" id="info-description">
description
</td>
</tr>
<tr>
<th>price</th>
<td class="text-right" id="info-price">
price
</td>
</tr>
<tr>
<th>created</th>
<td class="text-right" id="info-date">
date the project was created
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</body>
</html>