-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
441 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1 @@ | ||
"""Package for the AiiDAlab QE app.""" | ||
|
||
from .main import App | ||
|
||
__all__ = [ | ||
"App", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
.info-box { | ||
display: none; | ||
margin: 2px; | ||
padding: 1em; | ||
border: 3px solid orangered; | ||
background-color: #ffedcc; | ||
border-radius: 1em; | ||
-webkit-border-radius: 1em; | ||
-moz-border-radius: 1em; | ||
-ms-border-radius: 1em; | ||
-o-border-radius: 1em; | ||
} | ||
.info-box p { | ||
line-height: 24px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<div class="about"> | ||
<p> | ||
The <a href="https://www.quantum-espresso.org/" target="_blank">Quantum ESPRESSO</a> app | ||
(or QE app for short) is a graphical front end for calculating materials properties using | ||
Quantum ESPRESSO (QE). Each property is calculated by workflows powered by the | ||
<a href="https://www.aiida.net/" target="_bland"> AiiDA engine</a>, and maintained in the | ||
<a href="https://aiida-quantumespresso.readthedocs.io/en/latest/" target="_blank">aiida-quantumespresso plugin</a> and many other plugins developed by the community. | ||
for AiiDA. | ||
</p> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<div class="guide"> | ||
<p> | ||
The QE app allows you to calculate properties in a simple 4-step process: | ||
</p> | ||
|
||
<ol> | ||
<li> | ||
🔍 <strong>Step 1:</strong> Select the structure you want to run. | ||
</li> | ||
<li> | ||
⚙️ <strong>Step 2:</strong> Select the properties you are interested in. | ||
</li> | ||
<li> | ||
💻 <strong>Step 3:</strong> Choose the computational resources you want to run on. | ||
</li> | ||
<li> | ||
🚀 <strong>Step 4:</strong> Submit your workflow. | ||
</li> | ||
</ol> | ||
|
||
<p> | ||
New users can go straight to the first step and select their structure. | ||
</p> | ||
|
||
<p> | ||
Completed workflows can be selected at the top of the app. | ||
</p> | ||
|
||
<p> | ||
You can also check out the | ||
<a href="https://aiidalab-qe.readthedocs.io/tutorials/basic.html" target="_blank">basic</a> tutorial to get started | ||
with the Quantum ESPRESSO app, or try out the | ||
<a href="https://aiidalab-qe.readthedocs.io/tutorials/advanced.html" target="_blank">advanced</a> tutorial to learn | ||
additional features offered by the app. | ||
</p> | ||
|
||
<p> | ||
For a more in-depth dive into the app's features, please refer to the | ||
<a href="https://aiidalab-qe.readthedocs.io/howto/index.html" target="_blank">how-to guides</a>. | ||
</p> | ||
</p> | ||
</div> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,3 @@ | ||
<head> | ||
<style> | ||
{{ style }} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
|
||
<div class="alert alert-danger error-container"> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,3 @@ | ||
<head> | ||
<style> | ||
{{ style }} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
|
||
<div class="row"> | ||
|
Oops, something went wrong.