FTXUI/examples/index.html

33 lines
1.2 KiB
HTML
Raw Permalink Normal View History

2023-11-19 19:09:52 +08:00
<!DOCTYPE html>
<html lang="en">
2021-03-22 05:54:39 +08:00
<head>
<meta charset="utf-8">
<title>FTXUI examples WebAssembly</title>
2023-11-19 19:09:52 +08:00
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>➡️</text></svg>">
<link rel="stylesheet" href="index.css">
2021-03-22 05:54:39 +08:00
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/xterm@4.11.0/css/xterm.css"></link>
2023-11-19 19:09:52 +08:00
<script type="module" src="index.mjs"></script>
2021-03-22 05:54:39 +08:00
</head>
<body>
<script id="example_script"></script>
2023-11-19 19:09:52 +08:00
2021-03-22 05:54:39 +08:00
<div class="page">
<p>
2023-11-19 19:09:52 +08:00
<a href="https://github.com/ArthurSonzogni/FTXUI">FTXUI</a> is a simple
functional C++ library for terminal user interface. <br/>
This showcases the: <a href="https://github.com/ArthurSonzogni/FTXUI/tree/master/examples">./example/</a> folder. <br/>
2021-03-22 05:54:39 +08:00
</p>
2023-11-19 19:09:52 +08:00
<div id="terminalContainer">
<div class="fakeMenu">
<div class="fakeButtons fakeClose"></div>
<div class="fakeButtons fakeMinimize"></div>
<div class="fakeButtons fakeZoom"></div>
<select id="selectExample"></select>
</div>
<div id="terminal"></div>
</div>
2021-03-22 05:54:39 +08:00
</div>
</body>
</html>