mirror of
https://github.com/rabbibotton/clog.git
synced 2025-12-05 18:20:36 -08:00
Start of demo 3 a lisp IDE
This commit is contained in:
parent
d9ea589211
commit
50da5dbb78
6 changed files with 193 additions and 0 deletions
BIN
static-files/demo/clogicon.png
Normal file
BIN
static-files/demo/clogicon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.7 KiB |
BIN
static-files/demo/clogwicon.png
Normal file
BIN
static-files/demo/clogwicon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.1 KiB |
46
static-files/demo/frame.html
Normal file
46
static-files/demo/frame.html
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
<!doctype HTML>
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<script src="/js/jquery.min.js" type="text/javascript"></script>
|
||||
<script>var clog_debug = true;</script>
|
||||
<script src="/js/boot.js" type="text/javascript"></script>
|
||||
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
|
||||
<script src="https://pagecdn.io/lib/ace/1.4.12/ace.js" type="text/javascript" charset="utf-8"></script>
|
||||
</HEAD>
|
||||
|
||||
<BODY class="w3-teal">
|
||||
<div class="w3-bar w3-black w3-card-4">
|
||||
<button id='ide-logo' class="w3-button w3-bar-item">
|
||||
<img height=22 src="/demo/clogwicon.png"></button>
|
||||
<div class="w3-dropdown-hover">
|
||||
<button class="w3-button">File</button>
|
||||
<div class="w3-dropdown-content w3-bar-block w3-card-4">
|
||||
<span id='ide-file-new' class="w3-bar-item w3-button">New</span>
|
||||
<span class="w3-bar-item w3-button">Open...</span>
|
||||
<span class="w3-bar-item w3-button">Save</span>
|
||||
<span class="w3-bar-item w3-button">Save as...</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="w3-dropdown-hover">
|
||||
<button class="w3-button">Edit</button>
|
||||
<div class="w3-dropdown-content w3-bar-block w3-card-4">
|
||||
<span class="w3-bar-item w3-button">Copy</span>
|
||||
<span class="w3-bar-item w3-button">Paste</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="w3-dropdown-hover">
|
||||
<button class="w3-button">Help</button>
|
||||
<div class="w3-dropdown-content w3-bar-block w3-card-4">
|
||||
<span id="ide-help-about" class="w3-bar-item w3-button">About CLOG Demo 3</span>
|
||||
</div>
|
||||
</div>
|
||||
<span class="w3-bar-item w3-right" onClick="documentElement.requestFullscreen()">⤢</span>
|
||||
</div>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
||||
Loading…
Add table
Add a link
Reference in a new issue