Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix base.html URLs #379

Merged
merged 3 commits into from
Mar 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions aiidalab/registry/templates/base.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!doctype html>

{% set app_registry_url = "http://aiidateam.github.io/aiida-registry" %}
{% set aiidalab_url = "https://www.materialscloud.org/aiidalab" %}
{% set app_registry_url = "https://aiidalab.github.io/aiidalab-registry/" %}
{% set aiidalab_url = "https://www.aiidalab.net/" %}

<html lang="en">

Expand Down
4 changes: 1 addition & 3 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,7 @@
html_theme = "pydata_sphinx_theme"

html_theme_options = {
"external_links": [
{"url": "https://www.materialscloud.org/aiidalab", "name": "AiiDAlab"}
],
"external_links": [{"url": "https://www.aiidalab.net/", "name": "AiiDAlab"}],
"github_url": "https://github.com/aiidalab/aiidalab",
"use_edit_page_button": True,
}
Expand Down
2 changes: 1 addition & 1 deletion docs/source/usage/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Access AiiDAlab

As a user, you have three options to access AiiDAlab:

1. Log into one of the `open AiiDAlab servers <https://materialscloud.org/aiidalab>`_.
1. Log into one of the `open AiiDAlab servers <https://www.aiidalab.net/deployments/>`_.
2. Run the AiiDAlab docker container directly :ref:`on your local machine <usage:run-locally>`.
3. Download the `Quantum Mobile Virtual Machine <https://quantum-mobile.readthedocs.io/>`_, open a terminal and run ``aiidalab``.

Expand Down