-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathstart.py
More file actions
93 lines (90 loc) · 3.23 KB
/
Copy pathstart.py
File metadata and controls
93 lines (90 loc) · 3.23 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
import ipywidgets as ipw
def get_start_widget(appbase, jupbase, notebase): # noqa: ARG001
return ipw.HTML(f"""
<style>
details {{
border: 1px solid #aaaaaa;
border-radius: 4px;
padding: 1rem 2rem 0.25rem;
margin: 1rem 2px 2rem;
}}
summary {{
font-weight: bold;
margin: -0.5em -0.5em 0;
padding: 0.5em;
cursor: pointer;
}}
summary::before {{
content: "▶";
}}
details[open] summary::before {{
content: "▼";
}}
</style>
<div class="app-container">
<a
class="logo"
href="{appbase}/qe.ipynb"
target="_blank"
>
<img src="{appbase}/src/aiidalab_qe/app/static/images/logo.png" />
</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_manager.ipynb"
target="_blank">
<img
class="feature-logo"
src="{appbase}/miscellaneous/logos/plugins.png"
alt="Plugin store"
/>
<div class="feature-label">Plugin store</div>
</a>
<a
class="feature"
href="{appbase}/examples.ipynb"
target="_blank">
<img
class="feature-logo"
src="{appbase}/miscellaneous/logos/download.png"
alt="Download examples"
/>
<div class="feature-label">Download examples</div>
</a>
<a
class="feature"
href="https://www.quantum-espresso.org/"
target="_blank">
<img
class="feature-logo"
src="{appbase}/miscellaneous/logos/qe-logo.png"
alt="Quantum ESPRESSO"
/>
<div class="feature-label">Quantum ESPRESSO</div>
</a>
</div>
</div>
""")