-
-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathmenuFrame.html
More file actions
51 lines (49 loc) · 2.24 KB
/
menuFrame.html
File metadata and controls
51 lines (49 loc) · 2.24 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
<!--
Project Name : Visual Python
Description : GUI-based Python code generator
File Name : menuFrame.html
Author : Black Logic
Note : menu frame
License : GNU GPLv3 with Visual Python special exception
Date : 2021. 09. 13
Change Date :
-->
<!-- use body tag to strip comments out on requirejs/text plugin -->
<body>
<div id="vp_menuFrame" class="vp-menu-frame">
<!-- Menu Header -->
<div id="vp_menuHeader" class="vp-menu-header">
<!-- Full Logo as Image -->
<img src="/nbextensions/visualpython/img/VisualPython_Logo.svg" class="vp-logo">
<div id="vp_headerExtraMenuBtn" class="vp-menu-header-button vp-close-on-blur-btn">
<div id="vp_headerExtraMenu" class="vp-no-selection vp-close-on-blur">
<ul class="vp-header-extra-menu-list">
<li id="vp_extraMenuAbout">
About Visual Python
<a href="https://visualpython.ai/about" target="_blank">
<img src="/nbextensions/visualpython/img/snippets/export.svg">
</a>
</li>
<li id="vp_extraMenuVPNote">
VP Note
<a href="https://visualpython.ai/vpnotes" target="_blank">
<img src="/nbextensions/visualpython/img/snippets/export.svg">
</a>
</li>
</ul>
</div>
</div>
</div>
<!-- Menu Body -->
<div id="vp_menuBody" class="vp-menu-body vp-scrollbar">
<div class="vp-menu-search-div">
<input id="vp_menuSearchBox" class="vp-input vp-menu-search-box" type="text" placeholder="Search">
<img class="vp-menu-search-icon" src="/nbextensions/visualpython/img/search.svg"/>
<div id="vp_toggleBoard" class="vp-board-toggle-icon" title="VP Note"></div>
</div>
</div>
<!-- Menu Footer -->
<div id="vp_menuFooter" class="vp-menu-footer">
</div>
</div>
</body>