Skip to content

Commit

Permalink
Update home app container
Browse files Browse the repository at this point in the history
  • Loading branch information
edan-bainglass committed Feb 2, 2025
1 parent 20f0f1a commit 31d2382
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 8 deletions.
Binary file modified miscellaneous/logos/history.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified miscellaneous/logos/plugins.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added miscellaneous/logos/qe-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified miscellaneous/logos/workbench.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 23 additions & 8 deletions start.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@
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
class="logo"
href="{appbase}/qe.ipynb"
target="_blank"
>
<img src="{appbase}/src/aiidalab_qe/app/static/images/logo.png" />
</a>
<div class="features">
<a
Expand All @@ -18,7 +19,8 @@ def get_start_widget(appbase, jupbase, notebase): # noqa: ARG001
<img
class="feature-logo"
src="{appbase}/miscellaneous/logos/workbench.png"
alt="New calculation" />
alt="New calculation"
/>
<div class="feature-label">New calculation</div>
</a>
<a
Expand All @@ -28,7 +30,8 @@ def get_start_widget(appbase, jupbase, notebase): # noqa: ARG001
<img
class="feature-logo"
src="{appbase}/miscellaneous/logos/history.png"
alt="Calculation history" />
alt="Calculation history"
/>
<div class="feature-label">Calculation History</div>
</a>
<a
Expand All @@ -38,9 +41,21 @@ def get_start_widget(appbase, jupbase, notebase): # noqa: ARG001
<img
class="feature-logo"
src="{appbase}/miscellaneous/logos/plugins.png"
alt="Plugin store" />
alt="Plugin store"
/>
<div class="feature-label">Plugin store</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>
""")

0 comments on commit 31d2382

Please sign in to comment.