-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwiki.html
More file actions
255 lines (228 loc) · 5.71 KB
/
wiki.html
File metadata and controls
255 lines (228 loc) · 5.71 KB
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GoSmart Wiki</title>
<style>
/* Font & background ala Wikipedia */
body {
font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
background-color: #f8f9fa;
color: #202122;
margin: 0;
padding: 0;
}
/* Header */
header {
background-color: #f5f5f5;
padding: 10px 20px;
border-bottom: 1px solid #dcdcdc;
display: flex;
justify-content: space-between;
align-items: center;
}
header h1 {
font-size: 24px;
color: #0645ad;
margin: 0;
}
header input[type="search"] {
padding: 5px 10px;
font-size: 14px;
border-radius: 3px;
border: 1px solid #ccc;
}
/* Layout */
.container {
display: flex;
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
/* Sidebar kiri ala Wikipedia */
nav.sidebar {
width: 250px;
margin-right: 20px;
}
nav.sidebar ul {
list-style: none;
padding-left: 0;
}
nav.sidebar ul li {
margin-bottom: 10px;
}
nav.sidebar ul li a {
text-decoration: none;
color: #0645ad;
}
nav.sidebar ul li a:hover {
text-decoration: underline;
}
/* Konten utama */
main.content {
flex: 1;
background-color: #ffffff;
padding: 20px;
border: 1px solid #dcdcdc;
border-radius: 5px;
}
h2, h3, h4 {
color: #0645ad;
margin-top: 20px;
}
h2:before, h3:before {
content: "§ ";
color: #888;
}
p {
margin: 10px 0;
}
ul, ol {
margin: 10px 0 10px 20px;
}
table {
border-collapse: collapse;
width: 100%;
margin: 15px 0;
}
table, th, td {
border: 1px solid #ccc;
}
th, td {
padding: 8px;
text-align: left;
}
blockquote {
border-left: 3px solid #ccc;
padding-left: 10px;
color: #555;
margin: 10px 0;
}
code {
background-color: #f4f4f4;
padding: 2px 4px;
border-radius: 3px;
font-family: monospace;
}
/* Table of Contents ala Wikipedia */
.toc {
background-color: #f9f9f9;
border: 1px solid #ccc;
padding: 10px;
margin-bottom: 20px;
}
.toc h2 {
font-size: 16px;
margin: 0 0 10px 0;
}
.toc ul {
padding-left: 20px;
}
.toc li {
margin: 5px 0;
}
/* Footer */
footer {
text-align: center;
margin: 40px 0;
font-size: 12px;
color: #555;
}
</style>
</head>
<body>
<header>
<h1>GoSmart Wiki</h1>
<input type="search" placeholder="Cari di Wiki...">
</header>
<div class="container">
<nav class="sidebar">
<ul>
<li><a href="#home">Beranda</a></li>
<li><a href="#tools">Tools</a></li>
<li><a href="#pos">POS</a></li>
<li><a href="#software">Software</a></li>
<li><a href="#hardware">Hardware</a></li>
<li><a href="#web">Web, JS, HTML</a></li>
<li><a href="#github">GitHub</a></li>
</ul>
</nav>
<main class="content">
<div class="toc">
<h2>Daftar Isi</h2>
<ul>
<li><a href="#home">Beranda</a></li>
<li><a href="#tools">Tools</a></li>
<li><a href="#pos">POS</a></li>
<li><a href="#software">Software</a></li>
<li><a href="#hardware">Hardware</a></li>
<li><a href="#web">Web, JS, HTML</a></li>
<li><a href="#github">GitHub</a></li>
</ul>
</div>
<section id="home">
<h2>Beranda</h2>
<p>GoSmart Wiki adalah dokumentasi berbasis IT dan teknologi yang mencakup sejarah, penggunaan, dan panduan Tools, POS, Software, Hardware, Web, serta GitHub GoSmart Tools.</p>
</section>
<section id="tools">
<h2>Sejarah Tools</h2>
<p>Tools GoSmart dibuat untuk meningkatkan efisiensi kerja IT, otomasi tugas, dan integrasi sistem modern.</p>
<ul>
<li>Dashboard monitoring real-time</li>
<li>Integrasi API dan cloud</li>
<li>Fleksibel untuk bisnis dan developer</li>
</ul>
</section>
<section id="pos">
<h2>Point of Sale (POS)</h2>
<p>POS GoSmart memudahkan manajemen transaksi, inventori, dan laporan penjualan.</p>
<ul>
<li>Laporan real-time</li>
<li>Mendukung hardware POS standar</li>
<li>Integrasi langsung dengan Tools GoSmart</li>
</ul>
</section>
<section id="software">
<h2>Software</h2>
<p>Software GoSmart mendukung pengelolaan sistem, integrasi API, dan otomasi data.</p>
<ul>
<li>Monitoring server & client</li>
<li>Integrasi API pihak ketiga</li>
<li>Backup & keamanan berbasis cloud</li>
</ul>
</section>
<section id="hardware">
<h2>Hardware</h2>
<p>Perangkat keras yang didukung termasuk komputer, server, POS terminal, printer, dan scanner.</p>
<ul>
<li>Kompatibilitas tinggi</li>
<li>Optimasi performa</li>
</ul>
</section>
<section id="web">
<h2>Web, JavaScript, HTML</h2>
<p>GoSmart Wiki juga membahas teknologi web modern yang digunakan dalam Tools.</p>
<ul>
<li>HTML5, CSS3, JavaScript</li>
<li>Customer Support berbasis chat & ticket system</li>
</ul>
<blockquote>Contoh kode GoSmart Tools:</blockquote>
<pre><code><script src="gosmarttools.js"></script></code></pre>
</section>
<section id="github">
<h2>GitHub</h2>
<p>Semua Tools GoSmart tersedia di GitHub untuk kontribusi dan integrasi.</p>
<ul>
<li>Repository resmi: <a href="https://github.com/gosmarttools/gosmarttools.github.io">GoSmartTools</a></li>
<li>Dokumentasi lengkap untuk developer</li>
<li>Open source & kontribusi komunitas</li>
</ul>
</section>
</main>
</div>
<footer>
© 2026 GoSmart Tools. Wiki ini bersifat edukatif.
</footer>
</body>
</html>