-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathstart.py
46 lines (44 loc) · 1.73 KB
/
start.py
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
import ipywidgets as ipw
def get_start_widget(appbase, jupbase, notebase): # noqa: ARG001
return ipw.HTML(f"""
<div class="app-container">
<a href="https://www.quantum-espresso.org/" target="_blank">
<img
src="https://gitlab.com/QEF/q-e/raw/develop/logo.jpg"
height="180px"
width=323px">
</a>
<div class="features">
<a
class="feature"
href="{appbase}/qe.ipynb"
target="_blank">
<img
class="feature-logo"
src="{appbase}/miscellaneous/logos/workbench.png"
alt="New calculation" />
<div class="feature-label">New calculation</div>
</a>
<a
class="feature"
href="{appbase}/calculation_history.ipynb"
target="_blank">
<img
class="feature-logo"
src="{appbase}/miscellaneous/logos/history.png"
alt="Calculation history" />
<div class="feature-label">Calculation History</div>
</a>
<a
class="feature"
href="{appbase}/plugin_list.ipynb"
target="_blank">
<img
class="feature-logo"
src="{appbase}/miscellaneous/logos/plugins.png"
alt="Plugin store" />
<div class="feature-label">Plugin store</div>
</a>
</div>
</div>
""")