forked from aiidalab/aiidalab-home
-
Notifications
You must be signed in to change notification settings - Fork 0
/
start.py
59 lines (47 loc) · 1.49 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
47
48
49
50
51
52
53
54
55
56
57
58
59
import ipywidgets as ipw
def get_start_widget(appbase, jupbase):
# http://fontawesome.io/icons/
template = """
<center>
<table>
<tr>
<td style="text-align:center">
<a style="{style}" href="{jupbase}/tree/" title="File Manager" target="_blank">
<i class="fa fa-file-text-o fa-3x"></i>
</a><br>
File Manager
</td>
<td style="width:70px"></td>
<td style="text-align:center">
<a style="{style}" href="{appbase}/terminal.ipynb" title="Open Terminal" target="_blank">
<i class="fa fa-terminal fa-3x"></i>
</a><br>
Terminal
</td>
<td style="width:70px"></td>
<td style="text-align:center">
<a style="{style}" href="{jupbase}/tree/#running" title="Task Manager" target="_blank">
<i class="fa fa-tasks fa-3x"></i>
</a><br>
Tasks
</td>
<td style="width:70px"></td>
<td style="text-align:center">
<a style="{style}" href="{appbase}/appstore.ipynb" title="Install New Apps" target="_blank">
<i class="fa fa-puzzle-piece fa-3x" aria-hidden="true"></i>
</a><br>
App Store
</td>
<td style="width:70px"></td>
<td style="text-align:center">
<a style="{style}" href="https://aiidalab.readthedocs.io" title="Learn about AiiDAlab" target="_blank">
<i class="fa fa-question fa-3x" aria-hidden="true"></i>
</a><br>
Help
</td>
</tr>
</table>
</center>
"""
html = template.format(appbase=appbase, jupbase=jupbase, style="margin:20px")
return ipw.HTML(html)