-
Notifications
You must be signed in to change notification settings - Fork 1
/
deployments.html
109 lines (107 loc) · 4.53 KB
/
deployments.html
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
---
title: Deployments
heading: Official Deployments
description: You can <a href="https://aiidalab.readthedocs.io/en/latest/usage/index.html#aiidalab-launch">run AiiDAlab yourself</a>, however we also maintain a few official cloud-backed deployments for researchers affiliated with some of the projects funding the development of AiiDAlab.
deployments_table:
- name: Materials Cloud
color: "#D21F15"
status: online
features:
- text: Open to all researchers affiliated with <a href="https://www.materialscloud.org/home#partners">Materials Cloud partners</a>
highlight: true
- text: Hosted at the <a href="https://www.cscs.ch/">Swiss National Supercomputing Centre (CSCS)</a>
- text: Policies <br>
links:
- href: /terms-of-use
text: Terms of Use
- href: /privacy-policy
text: Privacy Policy (Personal Data Protection)
- text: Sponsored by a <a href="https://prace-ri.eu/">PRACE</a>-<a href="https://fenix-ri.eu/">FENIX</a> grant
- images:
- src: images/endorsers/prace.png
alt: PRACE logo
- src: images/endorsers/fenix.png
alt: FENIX logo
call_to_action:
link: https://aiidalab.materialscloud.org
text: Login
- name: Materials MarketPlace
color: "#05587B"
status: Not Avail
features:
- text: Open to all Materials Modeling MarketPlace users
highlight: true
- text: Hosted at <a href="https://www.digitalocean.com/">DigitalOcean</a>
- text: Sponsored by the <a href="https://www.materials-marketplace.eu/">Materials Modeling MarketPlace</a>
- images:
- src: images/endorsers/materials-marketplace.png
alt: Materials MarketPlace logo
call_to_action:
link: https://materials-marketplace.aiidalab.net
text: Login
- name: Materials Cloud - NEP
color: "#E5642A"
status: online
features:
- text: Open to all researchers affiliated with <a href="https://www.nffa.eu/news/project-updates/pilot-nep/">NFFA-Europe PILOT (NEP) affiliation</a>
highlight: true
- text: Hosted at the <a href="https://www.cscs.ch/">Swiss National Supercomputing Centre (CSCS)</a>
- text: Sponsored by <a href="https://www.nffa.eu/news/project-updates/pilot-nep/">NEP</a>
- images:
- src: images/endorsers/nffa.png
alt: NFFA-Europe PILOT logo
call_to_action:
link: https://aiidalab-nep.materialscloud.org
text: Login
faq:
- question: How can I get access to the Materials Cloud deployments?
answer: |
These deployments are restricted to members of organizations affiliated with the <a href="https://www.materialscloud.org/home#partners">Materials Cloud partners</a>.
If you are one of these members, please contact <a href="[email protected]">[email protected]</a> and request access.
- question: I am not eligible for any of these deployments, how can I use AiiDAlab?
answer: |
The easiest would be to simply run it yourself!
Please see <a href="https://aiidalab.readthedocs.io/en/latest/usage/index.html#aiidalab-launch">here</a> for instructions on how to run AiiDAlab yourself.
- question: Questions?
answer: Please message us at <a href="mailto:[email protected]">[email protected]</a> for any other questions.
---
<div class="deployments">
{% for deployment in page.deployments_table %}
<ul class="deployment">
<li style="background: {{ deployment.color }}">
<h3>{{ deployment.name }}</h3>
</li>
{% for feature in deployment.features %}
<li {% if feature.highlight %} class="highlighted" {% endif %}>
{{ feature.text }} {% for link in feature.links %}
<a href="{{ site.baseurl }}{{ link.href }}">{{ link.text }}</a><br />
{% endfor %} {% for image in feature.images %}
<img src="{{ site.base_url }}/{{ image.src }}" alt="{{ image.alt }}" />
{% endfor %}
</li>
{% endfor %} {% if deployment.call_to_action %}
<li class="deployments-cta">
<div class="status">Status: {{ deployment.status | upcase }}</div>
<div class="button">
<a
style="background: {{ deployment.color }}"
href="{{ deployment.call_to_action.link }}"
>{{ deployment.call_to_action.text }} →</a
>
</div>
</li>
{% endif %}
</ul>
{% endfor %}
</div>
{% if page.faq %}
<h2>FAQ</h2>
<dl class="faq">
{% for item in page.faq %}
<div>
<dt>{{ item.question }}</dt>
<dd>{{ item.answer }}</dd>
</div>
{% endfor %}
</dl>
{% endif %}