diff --git a/.docker/dev.nginx.conf b/.docker/dev.nginx.conf index 1e7b350..7ea1065 100644 --- a/.docker/dev.nginx.conf +++ b/.docker/dev.nginx.conf @@ -38,9 +38,9 @@ http { rewrite ^ $scheme://$http_host/workflows/ redirect; } - # Current NMDC documentation. + # Home documentation. location / { - proxy_pass http://nmdc-documentation:8000/; + proxy_pass http://home-docs:8000/; } } } diff --git a/.github/workflows/compile-current-nmdc-documentation.yml b/.github/workflows/compile-home-docs.yml similarity index 90% rename from .github/workflows/compile-current-nmdc-documentation.yml rename to .github/workflows/compile-home-docs.yml index f225d91..fd1cf45 100644 --- a/.github/workflows/compile-current-nmdc-documentation.yml +++ b/.github/workflows/compile-home-docs.yml @@ -1,6 +1,6 @@ # This GitHub Actions workflow compiles the Sphinx documentation into web-based documentation. # Reference: https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions -name: Compile current NMDC documentation into HTML +name: Compile home documentation into HTML on: push: { branches: [ main ] } @@ -17,7 +17,7 @@ jobs: run: # Set a default working directory for all `run` steps in this job. # Reference: https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#jobsjob_iddefaultsrun - working-directory: content/nmdc + working-directory: content/home permissions: contents: read steps: @@ -31,14 +31,14 @@ jobs: - name: Install other dependencies run: pip install -r requirements.txt - name: Compile source documents into HTML - run: sphinx-build -b html src ${{ github.workspace }}/content/nmdc/_build/html + run: sphinx-build -b html src ${{ github.workspace }}/content/home/_build/html # Upload the result as an "artifact" so it can then be downloaded and used by another job. - name: Save the HTML for publishing later # Docs: https://github.com/actions/upload-artifact uses: actions/upload-artifact@v4 with: - name: current-nmdc-documentation-as-html + name: current-home-documentation-as-html # Note: Relative `path` values here are relative to the _workspace_, not to the current working directory. # Reference: https://github.com/actions/upload-artifact/pull/477#issue-2044900649 - path: content/nmdc/_build/html + path: content/home/_build/html if-no-files-found: error retention-days: 1 # Note: 1 day is the shortest period possible diff --git a/.github/workflows/deploy-to-gh-pages.yml b/.github/workflows/deploy-to-gh-pages.yml index ff6a6fa..ba4de5a 100644 --- a/.github/workflows/deploy-to-gh-pages.yml +++ b/.github/workflows/deploy-to-gh-pages.yml @@ -17,9 +17,9 @@ jobs: compile-legacy-nmdc-documentation: name: Compile legacy NMDC documentation uses: ./.github/workflows/compile-legacy-nmdc-documentation.yml - compile-current-nmdc-documentation: - name: Compile current NMDC documentation - uses: ./.github/workflows/compile-current-nmdc-documentation.yml + compile-home-docs: + name: Compile home documentation + uses: ./.github/workflows/compile-home-docs.yml fetch-and-compile-nmdc-runtime-documentation: name: Fetch and compile NMDC Runtime documentation uses: ./.github/workflows/fetch-and-compile-nmdc-runtime-documentation.yml @@ -33,7 +33,7 @@ jobs: # Reference: https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#jobsjob_idneeds needs: - compile-legacy-nmdc-documentation - - compile-current-nmdc-documentation + - compile-home-docs - fetch-and-compile-nmdc-runtime-documentation - fetch-and-compile-workflow-documentation runs-on: ubuntu-latest @@ -56,7 +56,7 @@ jobs: _build/html/runtime \ _build/html/workflows cp -R -T artifacts/legacy-nmdc-documentation-as-html _build/html/legacy - cp -R -T artifacts/current-nmdc-documentation-as-html _build/html + cp -R -T artifacts/home-docs-as-html _build/html cp -R -T artifacts/nmdc-runtime-documentation-as-html _build/html/runtime cp -R -T artifacts/workflow-documentation-as-html _build/html/workflows - name: Inject robots.txt file into assembled website file tree diff --git a/content/.gitignore b/content/.gitignore index e69de29..63b55de 100644 --- a/content/.gitignore +++ b/content/.gitignore @@ -0,0 +1,2 @@ +# Ignore the web-based documentation generated by Sphinx. +/_build diff --git a/content/nmdc/.gitignore b/content/home/.gitignore similarity index 100% rename from content/nmdc/.gitignore rename to content/home/.gitignore diff --git a/content/nmdc/Dockerfile b/content/home/Dockerfile similarity index 100% rename from content/nmdc/Dockerfile rename to content/home/Dockerfile diff --git a/content/nmdc/requirements.txt b/content/home/requirements.txt similarity index 100% rename from content/nmdc/requirements.txt rename to content/home/requirements.txt diff --git a/content/nmdc/src/_static/css/custom.css b/content/home/src/_static/css/custom.css similarity index 100% rename from content/nmdc/src/_static/css/custom.css rename to content/home/src/_static/css/custom.css diff --git a/content/nmdc/src/_static/favicon.ico b/content/home/src/_static/favicon.ico similarity index 100% rename from content/nmdc/src/_static/favicon.ico rename to content/home/src/_static/favicon.ico diff --git a/content/nmdc/src/_static/images/howto_guides/api_gui/find_cursor.png b/content/home/src/_static/images/howto_guides/api_gui/find_cursor.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/api_gui/find_cursor.png rename to content/home/src/_static/images/howto_guides/api_gui/find_cursor.png diff --git a/content/nmdc/src/_static/images/howto_guides/api_gui/find_data_objects_data_object_id.png b/content/home/src/_static/images/howto_guides/api_gui/find_data_objects_data_object_id.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/api_gui/find_data_objects_data_object_id.png rename to content/home/src/_static/images/howto_guides/api_gui/find_data_objects_data_object_id.png diff --git a/content/nmdc/src/_static/images/howto_guides/api_gui/find_example_note.png b/content/home/src/_static/images/howto_guides/api_gui/find_example_note.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/api_gui/find_example_note.png rename to content/home/src/_static/images/howto_guides/api_gui/find_example_note.png diff --git a/content/nmdc/src/_static/images/howto_guides/api_gui/find_example_step1.png b/content/home/src/_static/images/howto_guides/api_gui/find_example_step1.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/api_gui/find_example_step1.png rename to content/home/src/_static/images/howto_guides/api_gui/find_example_step1.png diff --git a/content/nmdc/src/_static/images/howto_guides/api_gui/find_example_step2.png b/content/home/src/_static/images/howto_guides/api_gui/find_example_step2.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/api_gui/find_example_step2.png rename to content/home/src/_static/images/howto_guides/api_gui/find_example_step2.png diff --git a/content/nmdc/src/_static/images/howto_guides/api_gui/find_example_step3and4.png b/content/home/src/_static/images/howto_guides/api_gui/find_example_step3and4.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/api_gui/find_example_step3and4.png rename to content/home/src/_static/images/howto_guides/api_gui/find_example_step3and4.png diff --git a/content/nmdc/src/_static/images/howto_guides/api_gui/find_example_step5.png b/content/home/src/_static/images/howto_guides/api_gui/find_example_step5.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/api_gui/find_example_step5.png rename to content/home/src/_static/images/howto_guides/api_gui/find_example_step5.png diff --git a/content/nmdc/src/_static/images/howto_guides/api_gui/find_get_activities.png b/content/home/src/_static/images/howto_guides/api_gui/find_get_activities.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/api_gui/find_get_activities.png rename to content/home/src/_static/images/howto_guides/api_gui/find_get_activities.png diff --git a/content/nmdc/src/_static/images/howto_guides/api_gui/find_get_activities_activity_id.png b/content/home/src/_static/images/howto_guides/api_gui/find_get_activities_activity_id.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/api_gui/find_get_activities_activity_id.png rename to content/home/src/_static/images/howto_guides/api_gui/find_get_activities_activity_id.png diff --git a/content/nmdc/src/_static/images/howto_guides/api_gui/find_get_biosamples.png b/content/home/src/_static/images/howto_guides/api_gui/find_get_biosamples.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/api_gui/find_get_biosamples.png rename to content/home/src/_static/images/howto_guides/api_gui/find_get_biosamples.png diff --git a/content/nmdc/src/_static/images/howto_guides/api_gui/find_get_biosamples_sample_id.png b/content/home/src/_static/images/howto_guides/api_gui/find_get_biosamples_sample_id.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/api_gui/find_get_biosamples_sample_id.png rename to content/home/src/_static/images/howto_guides/api_gui/find_get_biosamples_sample_id.png diff --git a/content/nmdc/src/_static/images/howto_guides/api_gui/find_get_data_objects.png b/content/home/src/_static/images/howto_guides/api_gui/find_get_data_objects.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/api_gui/find_get_data_objects.png rename to content/home/src/_static/images/howto_guides/api_gui/find_get_data_objects.png diff --git a/content/nmdc/src/_static/images/howto_guides/api_gui/find_get_data_objects_study.png b/content/home/src/_static/images/howto_guides/api_gui/find_get_data_objects_study.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/api_gui/find_get_data_objects_study.png rename to content/home/src/_static/images/howto_guides/api_gui/find_get_data_objects_study.png diff --git a/content/nmdc/src/_static/images/howto_guides/api_gui/find_get_studies.png b/content/home/src/_static/images/howto_guides/api_gui/find_get_studies.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/api_gui/find_get_studies.png rename to content/home/src/_static/images/howto_guides/api_gui/find_get_studies.png diff --git a/content/nmdc/src/_static/images/howto_guides/api_gui/find_get_studies_study_id.png b/content/home/src/_static/images/howto_guides/api_gui/find_get_studies_study_id.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/api_gui/find_get_studies_study_id.png rename to content/home/src/_static/images/howto_guides/api_gui/find_get_studies_study_id.png diff --git a/content/nmdc/src/_static/images/howto_guides/api_gui/metadata_example_step1.png b/content/home/src/_static/images/howto_guides/api_gui/metadata_example_step1.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/api_gui/metadata_example_step1.png rename to content/home/src/_static/images/howto_guides/api_gui/metadata_example_step1.png diff --git a/content/nmdc/src/_static/images/howto_guides/api_gui/metadata_example_step2.png b/content/home/src/_static/images/howto_guides/api_gui/metadata_example_step2.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/api_gui/metadata_example_step2.png rename to content/home/src/_static/images/howto_guides/api_gui/metadata_example_step2.png diff --git a/content/nmdc/src/_static/images/howto_guides/api_gui/metadata_example_step3.png b/content/home/src/_static/images/howto_guides/api_gui/metadata_example_step3.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/api_gui/metadata_example_step3.png rename to content/home/src/_static/images/howto_guides/api_gui/metadata_example_step3.png diff --git a/content/nmdc/src/_static/images/howto_guides/api_gui/metadata_example_step4and5.png b/content/home/src/_static/images/howto_guides/api_gui/metadata_example_step4and5.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/api_gui/metadata_example_step4and5.png rename to content/home/src/_static/images/howto_guides/api_gui/metadata_example_step4and5.png diff --git a/content/nmdc/src/_static/images/howto_guides/api_gui/metadata_example_step6.png b/content/home/src/_static/images/howto_guides/api_gui/metadata_example_step6.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/api_gui/metadata_example_step6.png rename to content/home/src/_static/images/howto_guides/api_gui/metadata_example_step6.png diff --git a/content/nmdc/src/_static/images/howto_guides/api_gui/metadata_get_collection_name.png b/content/home/src/_static/images/howto_guides/api_gui/metadata_get_collection_name.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/api_gui/metadata_get_collection_name.png rename to content/home/src/_static/images/howto_guides/api_gui/metadata_get_collection_name.png diff --git a/content/nmdc/src/_static/images/howto_guides/api_gui/metadata_get_collection_name_doc_id.png b/content/home/src/_static/images/howto_guides/api_gui/metadata_get_collection_name_doc_id.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/api_gui/metadata_get_collection_name_doc_id.png rename to content/home/src/_static/images/howto_guides/api_gui/metadata_get_collection_name_doc_id.png diff --git a/content/nmdc/src/_static/images/howto_guides/api_gui/metadata_get_collection_stats.png b/content/home/src/_static/images/howto_guides/api_gui/metadata_get_collection_stats.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/api_gui/metadata_get_collection_stats.png rename to content/home/src/_static/images/howto_guides/api_gui/metadata_get_collection_stats.png diff --git a/content/nmdc/src/_static/images/howto_guides/api_gui/metadata_get_doc_id.png b/content/home/src/_static/images/howto_guides/api_gui/metadata_get_doc_id.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/api_gui/metadata_get_doc_id.png rename to content/home/src/_static/images/howto_guides/api_gui/metadata_get_doc_id.png diff --git a/content/nmdc/src/_static/images/howto_guides/api_gui/metadata_get_nmdcschema_version.png b/content/home/src/_static/images/howto_guides/api_gui/metadata_get_nmdcschema_version.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/api_gui/metadata_get_nmdcschema_version.png rename to content/home/src/_static/images/howto_guides/api_gui/metadata_get_nmdcschema_version.png diff --git a/content/nmdc/src/_static/images/howto_guides/api_gui/metadata_page_token_param.png b/content/home/src/_static/images/howto_guides/api_gui/metadata_page_token_param.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/api_gui/metadata_page_token_param.png rename to content/home/src/_static/images/howto_guides/api_gui/metadata_page_token_param.png diff --git a/content/nmdc/src/_static/images/howto_guides/api_gui/metadata_post_changesheets_validate.png b/content/home/src/_static/images/howto_guides/api_gui/metadata_post_changesheets_validate.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/api_gui/metadata_post_changesheets_validate.png rename to content/home/src/_static/images/howto_guides/api_gui/metadata_post_changesheets_validate.png diff --git a/content/nmdc/src/_static/images/howto_guides/api_gui/metadata_post_json_validate.png b/content/home/src/_static/images/howto_guides/api_gui/metadata_post_json_validate.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/api_gui/metadata_post_json_validate.png rename to content/home/src/_static/images/howto_guides/api_gui/metadata_post_json_validate.png diff --git a/content/nmdc/src/_static/images/howto_guides/api_gui/metadata_post_validate_urls_file.png b/content/home/src/_static/images/howto_guides/api_gui/metadata_post_validate_urls_file.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/api_gui/metadata_post_validate_urls_file.png rename to content/home/src/_static/images/howto_guides/api_gui/metadata_post_validate_urls_file.png diff --git a/content/nmdc/src/_static/images/howto_guides/data_mgt/data_mgt_list.png b/content/home/src/_static/images/howto_guides/data_mgt/data_mgt_list.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/data_mgt/data_mgt_list.png rename to content/home/src/_static/images/howto_guides/data_mgt/data_mgt_list.png diff --git a/content/nmdc/src/_static/images/howto_guides/portal_guide/Create_submission.png b/content/home/src/_static/images/howto_guides/portal_guide/Create_submission.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/portal_guide/Create_submission.png rename to content/home/src/_static/images/howto_guides/portal_guide/Create_submission.png diff --git a/content/nmdc/src/_static/images/howto_guides/portal_guide/KO_results.png b/content/home/src/_static/images/howto_guides/portal_guide/KO_results.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/portal_guide/KO_results.png rename to content/home/src/_static/images/howto_guides/portal_guide/KO_results.png diff --git a/content/nmdc/src/_static/images/howto_guides/portal_guide/KO_term_search.png b/content/home/src/_static/images/howto_guides/portal_guide/KO_term_search.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/portal_guide/KO_term_search.png rename to content/home/src/_static/images/howto_guides/portal_guide/KO_term_search.png diff --git a/content/nmdc/src/_static/images/howto_guides/portal_guide/ORCiD.png b/content/home/src/_static/images/howto_guides/portal_guide/ORCiD.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/portal_guide/ORCiD.png rename to content/home/src/_static/images/howto_guides/portal_guide/ORCiD.png diff --git a/content/nmdc/src/_static/images/howto_guides/portal_guide/PI_search.png b/content/home/src/_static/images/howto_guides/portal_guide/PI_search.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/portal_guide/PI_search.png rename to content/home/src/_static/images/howto_guides/portal_guide/PI_search.png diff --git a/content/nmdc/src/_static/images/howto_guides/portal_guide/bar_plot.png b/content/home/src/_static/images/howto_guides/portal_guide/bar_plot.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/portal_guide/bar_plot.png rename to content/home/src/_static/images/howto_guides/portal_guide/bar_plot.png diff --git a/content/nmdc/src/_static/images/howto_guides/portal_guide/bulk_download.png b/content/home/src/_static/images/howto_guides/portal_guide/bulk_download.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/portal_guide/bulk_download.png rename to content/home/src/_static/images/howto_guides/portal_guide/bulk_download.png diff --git a/content/nmdc/src/_static/images/howto_guides/portal_guide/color_legend.png b/content/home/src/_static/images/howto_guides/portal_guide/color_legend.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/portal_guide/color_legend.png rename to content/home/src/_static/images/howto_guides/portal_guide/color_legend.png diff --git a/content/nmdc/src/_static/images/howto_guides/portal_guide/column_help.png b/content/home/src/_static/images/howto_guides/portal_guide/column_help.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/portal_guide/column_help.png rename to content/home/src/_static/images/howto_guides/portal_guide/column_help.png diff --git a/content/nmdc/src/_static/images/howto_guides/portal_guide/column_search.png b/content/home/src/_static/images/howto_guides/portal_guide/column_search.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/portal_guide/column_search.png rename to content/home/src/_static/images/howto_guides/portal_guide/column_search.png diff --git a/content/nmdc/src/_static/images/howto_guides/portal_guide/column_visibility.png b/content/home/src/_static/images/howto_guides/portal_guide/column_visibility.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/portal_guide/column_visibility.png rename to content/home/src/_static/images/howto_guides/portal_guide/column_visibility.png diff --git a/content/nmdc/src/_static/images/howto_guides/portal_guide/date.png b/content/home/src/_static/images/howto_guides/portal_guide/date.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/portal_guide/date.png rename to content/home/src/_static/images/howto_guides/portal_guide/date.png diff --git a/content/nmdc/src/_static/images/howto_guides/portal_guide/depth.png b/content/home/src/_static/images/howto_guides/portal_guide/depth.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/portal_guide/depth.png rename to content/home/src/_static/images/howto_guides/portal_guide/depth.png diff --git a/content/nmdc/src/_static/images/howto_guides/portal_guide/download_individual_file.png b/content/home/src/_static/images/howto_guides/portal_guide/download_individual_file.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/portal_guide/download_individual_file.png rename to content/home/src/_static/images/howto_guides/portal_guide/download_individual_file.png diff --git a/content/nmdc/src/_static/images/howto_guides/portal_guide/enviro_package.png b/content/home/src/_static/images/howto_guides/portal_guide/enviro_package.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/portal_guide/enviro_package.png rename to content/home/src/_static/images/howto_guides/portal_guide/enviro_package.png diff --git a/content/nmdc/src/_static/images/howto_guides/portal_guide/envo.png b/content/home/src/_static/images/howto_guides/portal_guide/envo.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/portal_guide/envo.png rename to content/home/src/_static/images/howto_guides/portal_guide/envo.png diff --git a/content/nmdc/src/_static/images/howto_guides/portal_guide/geographic_map.png b/content/home/src/_static/images/howto_guides/portal_guide/geographic_map.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/portal_guide/geographic_map.png rename to content/home/src/_static/images/howto_guides/portal_guide/geographic_map.png diff --git a/content/nmdc/src/_static/images/howto_guides/portal_guide/geographic_name.png b/content/home/src/_static/images/howto_guides/portal_guide/geographic_name.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/portal_guide/geographic_name.png rename to content/home/src/_static/images/howto_guides/portal_guide/geographic_name.png diff --git a/content/nmdc/src/_static/images/howto_guides/portal_guide/gold_classification.png b/content/home/src/_static/images/howto_guides/portal_guide/gold_classification.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/portal_guide/gold_classification.png rename to content/home/src/_static/images/howto_guides/portal_guide/gold_classification.png diff --git a/content/nmdc/src/_static/images/howto_guides/portal_guide/instrument_name.png b/content/home/src/_static/images/howto_guides/portal_guide/instrument_name.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/portal_guide/instrument_name.png rename to content/home/src/_static/images/howto_guides/portal_guide/instrument_name.png diff --git a/content/nmdc/src/_static/images/howto_guides/portal_guide/jump_to_column.png b/content/home/src/_static/images/howto_guides/portal_guide/jump_to_column.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/portal_guide/jump_to_column.png rename to content/home/src/_static/images/howto_guides/portal_guide/jump_to_column.png diff --git a/content/nmdc/src/_static/images/howto_guides/portal_guide/latitude.png b/content/home/src/_static/images/howto_guides/portal_guide/latitude.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/portal_guide/latitude.png rename to content/home/src/_static/images/howto_guides/portal_guide/latitude.png diff --git a/content/nmdc/src/_static/images/howto_guides/portal_guide/longitude.png b/content/home/src/_static/images/howto_guides/portal_guide/longitude.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/portal_guide/longitude.png rename to content/home/src/_static/images/howto_guides/portal_guide/longitude.png diff --git a/content/nmdc/src/_static/images/howto_guides/portal_guide/multiomics.png b/content/home/src/_static/images/howto_guides/portal_guide/multiomics.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/portal_guide/multiomics.png rename to content/home/src/_static/images/howto_guides/portal_guide/multiomics.png diff --git a/content/nmdc/src/_static/images/howto_guides/portal_guide/omics_type.png b/content/home/src/_static/images/howto_guides/portal_guide/omics_type.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/portal_guide/omics_type.png rename to content/home/src/_static/images/howto_guides/portal_guide/omics_type.png diff --git a/content/nmdc/src/_static/images/howto_guides/portal_guide/portal_functionality.png b/content/home/src/_static/images/howto_guides/portal_guide/portal_functionality.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/portal_guide/portal_functionality.png rename to content/home/src/_static/images/howto_guides/portal_guide/portal_functionality.png diff --git a/content/nmdc/src/_static/images/howto_guides/portal_guide/processing_institution.png b/content/home/src/_static/images/howto_guides/portal_guide/processing_institution.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/portal_guide/processing_institution.png rename to content/home/src/_static/images/howto_guides/portal_guide/processing_institution.png diff --git a/content/nmdc/src/_static/images/howto_guides/portal_guide/sankey_diagram.png b/content/home/src/_static/images/howto_guides/portal_guide/sankey_diagram.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/portal_guide/sankey_diagram.png rename to content/home/src/_static/images/howto_guides/portal_guide/sankey_diagram.png diff --git a/content/nmdc/src/_static/images/howto_guides/portal_guide/shipping_info.png b/content/home/src/_static/images/howto_guides/portal_guide/shipping_info.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/portal_guide/shipping_info.png rename to content/home/src/_static/images/howto_guides/portal_guide/shipping_info.png diff --git a/content/nmdc/src/_static/images/howto_guides/portal_guide/study_info.png b/content/home/src/_static/images/howto_guides/portal_guide/study_info.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/portal_guide/study_info.png rename to content/home/src/_static/images/howto_guides/portal_guide/study_info.png diff --git a/content/nmdc/src/_static/images/howto_guides/portal_guide/sub_portal_enviro_package.png b/content/home/src/_static/images/howto_guides/portal_guide/sub_portal_enviro_package.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/portal_guide/sub_portal_enviro_package.png rename to content/home/src/_static/images/howto_guides/portal_guide/sub_portal_enviro_package.png diff --git a/content/nmdc/src/_static/images/howto_guides/portal_guide/sub_portal_input.png b/content/home/src/_static/images/howto_guides/portal_guide/sub_portal_input.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/portal_guide/sub_portal_input.png rename to content/home/src/_static/images/howto_guides/portal_guide/sub_portal_input.png diff --git a/content/nmdc/src/_static/images/howto_guides/portal_guide/submission_context.png b/content/home/src/_static/images/howto_guides/portal_guide/submission_context.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/portal_guide/submission_context.png rename to content/home/src/_static/images/howto_guides/portal_guide/submission_context.png diff --git a/content/nmdc/src/_static/images/howto_guides/portal_guide/temporal_slider.png b/content/home/src/_static/images/howto_guides/portal_guide/temporal_slider.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/portal_guide/temporal_slider.png rename to content/home/src/_static/images/howto_guides/portal_guide/temporal_slider.png diff --git a/content/nmdc/src/_static/images/howto_guides/portal_guide/upset_plot.png b/content/home/src/_static/images/howto_guides/portal_guide/upset_plot.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/portal_guide/upset_plot.png rename to content/home/src/_static/images/howto_guides/portal_guide/upset_plot.png diff --git a/content/nmdc/src/_static/images/howto_guides/portal_guide/validate.png b/content/home/src/_static/images/howto_guides/portal_guide/validate.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/portal_guide/validate.png rename to content/home/src/_static/images/howto_guides/portal_guide/validate.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/MAGs/image1.png b/content/home/src/_static/images/howto_guides/workflows/MAGs/image1.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/MAGs/image1.png rename to content/home/src/_static/images/howto_guides/workflows/MAGs/image1.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/MAGs/image2.png b/content/home/src/_static/images/howto_guides/workflows/MAGs/image2.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/MAGs/image2.png rename to content/home/src/_static/images/howto_guides/workflows/MAGs/image2.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/MAGs/image3.png b/content/home/src/_static/images/howto_guides/workflows/MAGs/image3.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/MAGs/image3.png rename to content/home/src/_static/images/howto_guides/workflows/MAGs/image3.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/MAGs/image4.png b/content/home/src/_static/images/howto_guides/workflows/MAGs/image4.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/MAGs/image4.png rename to content/home/src/_static/images/howto_guides/workflows/MAGs/image4.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/MAGs/image5.png b/content/home/src/_static/images/howto_guides/workflows/MAGs/image5.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/MAGs/image5.png rename to content/home/src/_static/images/howto_guides/workflows/MAGs/image5.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/MAGs/image6.png b/content/home/src/_static/images/howto_guides/workflows/MAGs/image6.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/MAGs/image6.png rename to content/home/src/_static/images/howto_guides/workflows/MAGs/image6.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/MAGs/image7.png b/content/home/src/_static/images/howto_guides/workflows/MAGs/image7.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/MAGs/image7.png rename to content/home/src/_static/images/howto_guides/workflows/MAGs/image7.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/NOM/image1.png b/content/home/src/_static/images/howto_guides/workflows/NOM/image1.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/NOM/image1.png rename to content/home/src/_static/images/howto_guides/workflows/NOM/image1.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/NOM/image2.png b/content/home/src/_static/images/howto_guides/workflows/NOM/image2.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/NOM/image2.png rename to content/home/src/_static/images/howto_guides/workflows/NOM/image2.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/NOM/image3.png b/content/home/src/_static/images/howto_guides/workflows/NOM/image3.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/NOM/image3.png rename to content/home/src/_static/images/howto_guides/workflows/NOM/image3.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/NOM/image4.png b/content/home/src/_static/images/howto_guides/workflows/NOM/image4.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/NOM/image4.png rename to content/home/src/_static/images/howto_guides/workflows/NOM/image4.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/NOM/image5.png b/content/home/src/_static/images/howto_guides/workflows/NOM/image5.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/NOM/image5.png rename to content/home/src/_static/images/howto_guides/workflows/NOM/image5.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/metaT/image1.png b/content/home/src/_static/images/howto_guides/workflows/metaT/image1.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/metaT/image1.png rename to content/home/src/_static/images/howto_guides/workflows/metaT/image1.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/metaT/image2.png b/content/home/src/_static/images/howto_guides/workflows/metaT/image2.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/metaT/image2.png rename to content/home/src/_static/images/howto_guides/workflows/metaT/image2.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/metaT/image3.png b/content/home/src/_static/images/howto_guides/workflows/metaT/image3.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/metaT/image3.png rename to content/home/src/_static/images/howto_guides/workflows/metaT/image3.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/metaT/image4.png b/content/home/src/_static/images/howto_guides/workflows/metaT/image4.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/metaT/image4.png rename to content/home/src/_static/images/howto_guides/workflows/metaT/image4.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/metaT/image5.png b/content/home/src/_static/images/howto_guides/workflows/metaT/image5.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/metaT/image5.png rename to content/home/src/_static/images/howto_guides/workflows/metaT/image5.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/metaT/image6.png b/content/home/src/_static/images/howto_guides/workflows/metaT/image6.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/metaT/image6.png rename to content/home/src/_static/images/howto_guides/workflows/metaT/image6.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/metagenomeAnnotation/image1.png b/content/home/src/_static/images/howto_guides/workflows/metagenomeAnnotation/image1.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/metagenomeAnnotation/image1.png rename to content/home/src/_static/images/howto_guides/workflows/metagenomeAnnotation/image1.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/metagenomeAnnotation/image2.png b/content/home/src/_static/images/howto_guides/workflows/metagenomeAnnotation/image2.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/metagenomeAnnotation/image2.png rename to content/home/src/_static/images/howto_guides/workflows/metagenomeAnnotation/image2.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/metagenomeAnnotation/image3.png b/content/home/src/_static/images/howto_guides/workflows/metagenomeAnnotation/image3.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/metagenomeAnnotation/image3.png rename to content/home/src/_static/images/howto_guides/workflows/metagenomeAnnotation/image3.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/metagenomeAnnotation/image4.png b/content/home/src/_static/images/howto_guides/workflows/metagenomeAnnotation/image4.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/metagenomeAnnotation/image4.png rename to content/home/src/_static/images/howto_guides/workflows/metagenomeAnnotation/image4.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/metagenomeAnnotation/image5.png b/content/home/src/_static/images/howto_guides/workflows/metagenomeAnnotation/image5.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/metagenomeAnnotation/image5.png rename to content/home/src/_static/images/howto_guides/workflows/metagenomeAnnotation/image5.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/metagenomeAnnotation/image6.png b/content/home/src/_static/images/howto_guides/workflows/metagenomeAnnotation/image6.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/metagenomeAnnotation/image6.png rename to content/home/src/_static/images/howto_guides/workflows/metagenomeAnnotation/image6.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/metagenomeAnnotation/image7.png b/content/home/src/_static/images/howto_guides/workflows/metagenomeAnnotation/image7.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/metagenomeAnnotation/image7.png rename to content/home/src/_static/images/howto_guides/workflows/metagenomeAnnotation/image7.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/metagenomeAssembly/image1.png b/content/home/src/_static/images/howto_guides/workflows/metagenomeAssembly/image1.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/metagenomeAssembly/image1.png rename to content/home/src/_static/images/howto_guides/workflows/metagenomeAssembly/image1.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/metagenomeAssembly/image2.png b/content/home/src/_static/images/howto_guides/workflows/metagenomeAssembly/image2.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/metagenomeAssembly/image2.png rename to content/home/src/_static/images/howto_guides/workflows/metagenomeAssembly/image2.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/metagenomeAssembly/image4.png b/content/home/src/_static/images/howto_guides/workflows/metagenomeAssembly/image4.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/metagenomeAssembly/image4.png rename to content/home/src/_static/images/howto_guides/workflows/metagenomeAssembly/image4.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/metagenomeAssembly/image5.png b/content/home/src/_static/images/howto_guides/workflows/metagenomeAssembly/image5.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/metagenomeAssembly/image5.png rename to content/home/src/_static/images/howto_guides/workflows/metagenomeAssembly/image5.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/metagenomeAssembly/image6.png b/content/home/src/_static/images/howto_guides/workflows/metagenomeAssembly/image6.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/metagenomeAssembly/image6.png rename to content/home/src/_static/images/howto_guides/workflows/metagenomeAssembly/image6.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/metagenomeAssembly/image7.png b/content/home/src/_static/images/howto_guides/workflows/metagenomeAssembly/image7.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/metagenomeAssembly/image7.png rename to content/home/src/_static/images/howto_guides/workflows/metagenomeAssembly/image7.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/metagenomeAssembly/image8.png b/content/home/src/_static/images/howto_guides/workflows/metagenomeAssembly/image8.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/metagenomeAssembly/image8.png rename to content/home/src/_static/images/howto_guides/workflows/metagenomeAssembly/image8.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image1.png b/content/home/src/_static/images/howto_guides/workflows/quickStart/image1.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image1.png rename to content/home/src/_static/images/howto_guides/workflows/quickStart/image1.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image10.png b/content/home/src/_static/images/howto_guides/workflows/quickStart/image10.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image10.png rename to content/home/src/_static/images/howto_guides/workflows/quickStart/image10.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image11.png b/content/home/src/_static/images/howto_guides/workflows/quickStart/image11.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image11.png rename to content/home/src/_static/images/howto_guides/workflows/quickStart/image11.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image12.png b/content/home/src/_static/images/howto_guides/workflows/quickStart/image12.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image12.png rename to content/home/src/_static/images/howto_guides/workflows/quickStart/image12.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image13.png b/content/home/src/_static/images/howto_guides/workflows/quickStart/image13.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image13.png rename to content/home/src/_static/images/howto_guides/workflows/quickStart/image13.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image14.png b/content/home/src/_static/images/howto_guides/workflows/quickStart/image14.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image14.png rename to content/home/src/_static/images/howto_guides/workflows/quickStart/image14.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image15.png b/content/home/src/_static/images/howto_guides/workflows/quickStart/image15.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image15.png rename to content/home/src/_static/images/howto_guides/workflows/quickStart/image15.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image2.png b/content/home/src/_static/images/howto_guides/workflows/quickStart/image2.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image2.png rename to content/home/src/_static/images/howto_guides/workflows/quickStart/image2.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image3.png b/content/home/src/_static/images/howto_guides/workflows/quickStart/image3.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image3.png rename to content/home/src/_static/images/howto_guides/workflows/quickStart/image3.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image4.png b/content/home/src/_static/images/howto_guides/workflows/quickStart/image4.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image4.png rename to content/home/src/_static/images/howto_guides/workflows/quickStart/image4.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image5.png b/content/home/src/_static/images/howto_guides/workflows/quickStart/image5.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image5.png rename to content/home/src/_static/images/howto_guides/workflows/quickStart/image5.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image6.png b/content/home/src/_static/images/howto_guides/workflows/quickStart/image6.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image6.png rename to content/home/src/_static/images/howto_guides/workflows/quickStart/image6.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image7.png b/content/home/src/_static/images/howto_guides/workflows/quickStart/image7.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image7.png rename to content/home/src/_static/images/howto_guides/workflows/quickStart/image7.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image8.png b/content/home/src/_static/images/howto_guides/workflows/quickStart/image8.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image8.png rename to content/home/src/_static/images/howto_guides/workflows/quickStart/image8.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image9.png b/content/home/src/_static/images/howto_guides/workflows/quickStart/image9.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/quickStart/image9.png rename to content/home/src/_static/images/howto_guides/workflows/quickStart/image9.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image1.png b/content/home/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image1.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image1.png rename to content/home/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image1.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image10.png b/content/home/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image10.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image10.png rename to content/home/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image10.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image2.png b/content/home/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image2.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image2.png rename to content/home/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image2.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image3.png b/content/home/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image3.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image3.png rename to content/home/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image3.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image4.png b/content/home/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image4.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image4.png rename to content/home/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image4.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image6.png b/content/home/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image6.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image6.png rename to content/home/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image6.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image7.png b/content/home/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image7.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image7.png rename to content/home/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image7.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image8.png b/content/home/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image8.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image8.png rename to content/home/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image8.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image9.png b/content/home/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image9.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image9.png rename to content/home/src/_static/images/howto_guides/workflows/readBasedTaxonomy/image9.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/readsQC/image1.png b/content/home/src/_static/images/howto_guides/workflows/readsQC/image1.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/readsQC/image1.png rename to content/home/src/_static/images/howto_guides/workflows/readsQC/image1.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/readsQC/image2.png b/content/home/src/_static/images/howto_guides/workflows/readsQC/image2.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/readsQC/image2.png rename to content/home/src/_static/images/howto_guides/workflows/readsQC/image2.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/readsQC/image3.png b/content/home/src/_static/images/howto_guides/workflows/readsQC/image3.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/readsQC/image3.png rename to content/home/src/_static/images/howto_guides/workflows/readsQC/image3.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/readsQC/image4.png b/content/home/src/_static/images/howto_guides/workflows/readsQC/image4.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/readsQC/image4.png rename to content/home/src/_static/images/howto_guides/workflows/readsQC/image4.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/readsQC/image5.png b/content/home/src/_static/images/howto_guides/workflows/readsQC/image5.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/readsQC/image5.png rename to content/home/src/_static/images/howto_guides/workflows/readsQC/image5.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/readsQC/image6.png b/content/home/src/_static/images/howto_guides/workflows/readsQC/image6.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/readsQC/image6.png rename to content/home/src/_static/images/howto_guides/workflows/readsQC/image6.png diff --git a/content/nmdc/src/_static/images/howto_guides/workflows/readsQC/image7.png b/content/home/src/_static/images/howto_guides/workflows/readsQC/image7.png similarity index 100% rename from content/nmdc/src/_static/images/howto_guides/workflows/readsQC/image7.png rename to content/home/src/_static/images/howto_guides/workflows/readsQC/image7.png diff --git a/content/nmdc/src/_static/images/nmdc-logo-bg-trans.png b/content/home/src/_static/images/nmdc-logo-bg-trans.png similarity index 100% rename from content/nmdc/src/_static/images/nmdc-logo-bg-trans.png rename to content/home/src/_static/images/nmdc-logo-bg-trans.png diff --git a/content/nmdc/src/_static/images/nmdc-logo-bg-white.png b/content/home/src/_static/images/nmdc-logo-bg-white.png similarity index 100% rename from content/nmdc/src/_static/images/nmdc-logo-bg-white.png rename to content/home/src/_static/images/nmdc-logo-bg-white.png diff --git a/content/nmdc/src/_static/images/other/construction_1_2887593.jpg b/content/home/src/_static/images/other/construction_1_2887593.jpg similarity index 100% rename from content/nmdc/src/_static/images/other/construction_1_2887593.jpg rename to content/home/src/_static/images/other/construction_1_2887593.jpg diff --git a/content/nmdc/src/_static/images/other/construction_2_3434723.jpg b/content/home/src/_static/images/other/construction_2_3434723.jpg similarity index 100% rename from content/nmdc/src/_static/images/other/construction_2_3434723.jpg rename to content/home/src/_static/images/other/construction_2_3434723.jpg diff --git a/content/nmdc/src/_static/images/other/construction_3_4232388.jpg b/content/home/src/_static/images/other/construction_3_4232388.jpg similarity index 100% rename from content/nmdc/src/_static/images/other/construction_3_4232388.jpg rename to content/home/src/_static/images/other/construction_3_4232388.jpg diff --git a/content/nmdc/src/_static/images/other/construction_4_kindpng_1353982.png b/content/home/src/_static/images/other/construction_4_kindpng_1353982.png similarity index 100% rename from content/nmdc/src/_static/images/other/construction_4_kindpng_1353982.png rename to content/home/src/_static/images/other/construction_4_kindpng_1353982.png diff --git a/content/nmdc/src/_static/images/other/construction_5_kindpng_2708235.png b/content/home/src/_static/images/other/construction_5_kindpng_2708235.png similarity index 100% rename from content/nmdc/src/_static/images/other/construction_5_kindpng_2708235.png rename to content/home/src/_static/images/other/construction_5_kindpng_2708235.png diff --git a/content/nmdc/src/_static/images/overview/diataxis_documentation_graphic.png b/content/home/src/_static/images/overview/diataxis_documentation_graphic.png similarity index 100% rename from content/nmdc/src/_static/images/overview/diataxis_documentation_graphic.png rename to content/home/src/_static/images/overview/diataxis_documentation_graphic.png diff --git a/content/nmdc/src/_static/images/reference/data_portal/nmdc-diagram.svg b/content/home/src/_static/images/reference/data_portal/nmdc-diagram.svg similarity index 100% rename from content/nmdc/src/_static/images/reference/data_portal/nmdc-diagram.svg rename to content/home/src/_static/images/reference/data_portal/nmdc-diagram.svg diff --git a/content/nmdc/src/_static/images/reference/metadata/NMDC_metadata_img1.png b/content/home/src/_static/images/reference/metadata/NMDC_metadata_img1.png similarity index 100% rename from content/nmdc/src/_static/images/reference/metadata/NMDC_metadata_img1.png rename to content/home/src/_static/images/reference/metadata/NMDC_metadata_img1.png diff --git a/content/nmdc/src/_static/images/reference/metadata/NMDC_metadata_img2.png b/content/home/src/_static/images/reference/metadata/NMDC_metadata_img2.png similarity index 100% rename from content/nmdc/src/_static/images/reference/metadata/NMDC_metadata_img2.png rename to content/home/src/_static/images/reference/metadata/NMDC_metadata_img2.png diff --git a/content/nmdc/src/_static/images/reference/metadata/NMDC_metadata_img3.png b/content/home/src/_static/images/reference/metadata/NMDC_metadata_img3.png similarity index 100% rename from content/nmdc/src/_static/images/reference/metadata/NMDC_metadata_img3.png rename to content/home/src/_static/images/reference/metadata/NMDC_metadata_img3.png diff --git a/content/nmdc/src/_static/images/reference/metadata/NMDC_metadata_img4.png b/content/home/src/_static/images/reference/metadata/NMDC_metadata_img4.png similarity index 100% rename from content/nmdc/src/_static/images/reference/metadata/NMDC_metadata_img4.png rename to content/home/src/_static/images/reference/metadata/NMDC_metadata_img4.png diff --git a/content/nmdc/src/_static/images/reference/metadata/NMDC_metadata_img5.png b/content/home/src/_static/images/reference/metadata/NMDC_metadata_img5.png similarity index 100% rename from content/nmdc/src/_static/images/reference/metadata/NMDC_metadata_img5.png rename to content/home/src/_static/images/reference/metadata/NMDC_metadata_img5.png diff --git a/content/nmdc/src/_static/images/reference/metadata/NMDC_metadata_img6.png b/content/home/src/_static/images/reference/metadata/NMDC_metadata_img6.png similarity index 100% rename from content/nmdc/src/_static/images/reference/metadata/NMDC_metadata_img6.png rename to content/home/src/_static/images/reference/metadata/NMDC_metadata_img6.png diff --git a/content/nmdc/src/_static/images/reference/metadata/ReadAnalysis_workflow.png b/content/home/src/_static/images/reference/metadata/ReadAnalysis_workflow.png similarity index 100% rename from content/nmdc/src/_static/images/reference/metadata/ReadAnalysis_workflow.png rename to content/home/src/_static/images/reference/metadata/ReadAnalysis_workflow.png diff --git a/content/nmdc/src/_static/images/reference/metadata/nmdc-logo-bg-trans.png b/content/home/src/_static/images/reference/metadata/nmdc-logo-bg-trans.png similarity index 100% rename from content/nmdc/src/_static/images/reference/metadata/nmdc-logo-bg-trans.png rename to content/home/src/_static/images/reference/metadata/nmdc-logo-bg-trans.png diff --git a/content/nmdc/src/_static/images/reference/metadata/nmdc-logo-bg-white.png b/content/home/src/_static/images/reference/metadata/nmdc-logo-bg-white.png similarity index 100% rename from content/nmdc/src/_static/images/reference/metadata/nmdc-logo-bg-white.png rename to content/home/src/_static/images/reference/metadata/nmdc-logo-bg-white.png diff --git a/content/nmdc/src/_static/images/reference/metadata/test_schema_uml.png b/content/home/src/_static/images/reference/metadata/test_schema_uml.png similarity index 100% rename from content/nmdc/src/_static/images/reference/metadata/test_schema_uml.png rename to content/home/src/_static/images/reference/metadata/test_schema_uml.png diff --git a/content/nmdc/src/_static/images/reference/metadata/test_schema_uml.svg b/content/home/src/_static/images/reference/metadata/test_schema_uml.svg similarity index 100% rename from content/nmdc/src/_static/images/reference/metadata/test_schema_uml.svg rename to content/home/src/_static/images/reference/metadata/test_schema_uml.svg diff --git a/content/nmdc/src/_static/images/reference/workflows/1_RQC_rqc_workflow.png b/content/home/src/_static/images/reference/workflows/1_RQC_rqc_workflow.png similarity index 100% rename from content/nmdc/src/_static/images/reference/workflows/1_RQC_rqc_workflow.png rename to content/home/src/_static/images/reference/workflows/1_RQC_rqc_workflow.png diff --git a/content/nmdc/src/_static/images/reference/workflows/2_MAG_MAG_workflow.png b/content/home/src/_static/images/reference/workflows/2_MAG_MAG_workflow.png similarity index 100% rename from content/nmdc/src/_static/images/reference/workflows/2_MAG_MAG_workflow.png rename to content/home/src/_static/images/reference/workflows/2_MAG_MAG_workflow.png diff --git a/content/nmdc/src/_static/images/reference/workflows/2_ReadAnalysis_readbased_analysis_workflow.png b/content/home/src/_static/images/reference/workflows/2_ReadAnalysis_readbased_analysis_workflow.png similarity index 100% rename from content/nmdc/src/_static/images/reference/workflows/2_ReadAnalysis_readbased_analysis_workflow.png rename to content/home/src/_static/images/reference/workflows/2_ReadAnalysis_readbased_analysis_workflow.png diff --git a/content/nmdc/src/_static/images/reference/workflows/3_MetaGAssemly_workflow_assembly.png b/content/home/src/_static/images/reference/workflows/3_MetaGAssemly_workflow_assembly.png similarity index 100% rename from content/nmdc/src/_static/images/reference/workflows/3_MetaGAssemly_workflow_assembly.png rename to content/home/src/_static/images/reference/workflows/3_MetaGAssemly_workflow_assembly.png diff --git a/content/nmdc/src/_static/images/reference/workflows/4_MetaGAnnotation_annotation.png b/content/home/src/_static/images/reference/workflows/4_MetaGAnnotation_annotation.png similarity index 100% rename from content/nmdc/src/_static/images/reference/workflows/4_MetaGAnnotation_annotation.png rename to content/home/src/_static/images/reference/workflows/4_MetaGAnnotation_annotation.png diff --git a/content/nmdc/src/_static/images/reference/workflows/5_MAG_MAG_workflow.png b/content/home/src/_static/images/reference/workflows/5_MAG_MAG_workflow.png similarity index 100% rename from content/nmdc/src/_static/images/reference/workflows/5_MAG_MAG_workflow.png rename to content/home/src/_static/images/reference/workflows/5_MAG_MAG_workflow.png diff --git a/content/nmdc/src/_static/images/reference/workflows/5_Metaproteomics_workflow_diagram.png b/content/home/src/_static/images/reference/workflows/5_Metaproteomics_workflow_diagram.png similarity index 100% rename from content/nmdc/src/_static/images/reference/workflows/5_Metaproteomics_workflow_diagram.png rename to content/home/src/_static/images/reference/workflows/5_Metaproteomics_workflow_diagram.png diff --git a/content/nmdc/src/_static/images/reference/workflows/5_ReadAnalysis_readbased_analysis_workflow.png b/content/home/src/_static/images/reference/workflows/5_ReadAnalysis_readbased_analysis_workflow.png similarity index 100% rename from content/nmdc/src/_static/images/reference/workflows/5_ReadAnalysis_readbased_analysis_workflow.png rename to content/home/src/_static/images/reference/workflows/5_ReadAnalysis_readbased_analysis_workflow.png diff --git a/content/nmdc/src/_static/images/reference/workflows/6_MetaT_metaT_figure.png b/content/home/src/_static/images/reference/workflows/6_MetaT_metaT_figure.png similarity index 100% rename from content/nmdc/src/_static/images/reference/workflows/6_MetaT_metaT_figure.png rename to content/home/src/_static/images/reference/workflows/6_MetaT_metaT_figure.png diff --git a/content/nmdc/src/_static/images/reference/workflows/6_MetaT_workflow_metatranscriptomics.png b/content/home/src/_static/images/reference/workflows/6_MetaT_workflow_metatranscriptomics.png similarity index 100% rename from content/nmdc/src/_static/images/reference/workflows/6_MetaT_workflow_metatranscriptomics.png rename to content/home/src/_static/images/reference/workflows/6_MetaT_workflow_metatranscriptomics.png diff --git a/content/nmdc/src/_static/images/reference/workflows/6_Metabolomics_metamsworkflow.png b/content/home/src/_static/images/reference/workflows/6_Metabolomics_metamsworkflow.png similarity index 100% rename from content/nmdc/src/_static/images/reference/workflows/6_Metabolomics_metamsworkflow.png rename to content/home/src/_static/images/reference/workflows/6_Metabolomics_metamsworkflow.png diff --git a/content/nmdc/src/_static/images/reference/workflows/6_Metaproteomics_workflow_diagram.png b/content/home/src/_static/images/reference/workflows/6_Metaproteomics_workflow_diagram.png similarity index 100% rename from content/nmdc/src/_static/images/reference/workflows/6_Metaproteomics_workflow_diagram.png rename to content/home/src/_static/images/reference/workflows/6_Metaproteomics_workflow_diagram.png diff --git a/content/nmdc/src/_static/images/reference/workflows/7_Metabolomics_metamsworkflow.png b/content/home/src/_static/images/reference/workflows/7_Metabolomics_metamsworkflow.png similarity index 100% rename from content/nmdc/src/_static/images/reference/workflows/7_Metabolomics_metamsworkflow.png rename to content/home/src/_static/images/reference/workflows/7_Metabolomics_metamsworkflow.png diff --git a/content/nmdc/src/_static/images/reference/workflows/7_Metaproteomics_detailed_workflow_diagram.png b/content/home/src/_static/images/reference/workflows/7_Metaproteomics_detailed_workflow_diagram.png similarity index 100% rename from content/nmdc/src/_static/images/reference/workflows/7_Metaproteomics_detailed_workflow_diagram.png rename to content/home/src/_static/images/reference/workflows/7_Metaproteomics_detailed_workflow_diagram.png diff --git a/content/nmdc/src/_static/images/reference/workflows/7_Metaproteomics_workflow_diagram.png b/content/home/src/_static/images/reference/workflows/7_Metaproteomics_workflow_diagram.png similarity index 100% rename from content/nmdc/src/_static/images/reference/workflows/7_Metaproteomics_workflow_diagram.png rename to content/home/src/_static/images/reference/workflows/7_Metaproteomics_workflow_diagram.png diff --git a/content/nmdc/src/_static/images/reference/workflows/8_Metabolomics_metamsworkflow.png b/content/home/src/_static/images/reference/workflows/8_Metabolomics_metamsworkflow.png similarity index 100% rename from content/nmdc/src/_static/images/reference/workflows/8_Metabolomics_metamsworkflow.png rename to content/home/src/_static/images/reference/workflows/8_Metabolomics_metamsworkflow.png diff --git a/content/nmdc/src/_static/images/reference/workflows/9_MetaT_Workflow_metatranscriptomics.png b/content/home/src/_static/images/reference/workflows/9_MetaT_Workflow_metatranscriptomics.png similarity index 100% rename from content/nmdc/src/_static/images/reference/workflows/9_MetaT_Workflow_metatranscriptomics.png rename to content/home/src/_static/images/reference/workflows/9_MetaT_Workflow_metatranscriptomics.png diff --git a/content/nmdc/src/_static/images/reference/workflows/9_NOM_enviromsworkflow.png b/content/home/src/_static/images/reference/workflows/9_NOM_enviromsworkflow.png similarity index 100% rename from content/nmdc/src/_static/images/reference/workflows/9_NOM_enviromsworkflow.png rename to content/home/src/_static/images/reference/workflows/9_NOM_enviromsworkflow.png diff --git a/content/nmdc/src/_static/js/index.js b/content/home/src/_static/js/index.js similarity index 100% rename from content/nmdc/src/_static/js/index.js rename to content/home/src/_static/js/index.js diff --git a/content/nmdc/src/_templates/breadcrumbs.html.disabled b/content/home/src/_templates/breadcrumbs.html.disabled similarity index 100% rename from content/nmdc/src/_templates/breadcrumbs.html.disabled rename to content/home/src/_templates/breadcrumbs.html.disabled diff --git a/content/nmdc/src/conf.py b/content/home/src/conf.py similarity index 98% rename from content/nmdc/src/conf.py rename to content/home/src/conf.py index b434985..bfd467c 100644 --- a/content/nmdc/src/conf.py +++ b/content/home/src/conf.py @@ -103,5 +103,5 @@ "github_user": "microbiomedata", "github_repo": "docs", "github_version": "main", - "conf_py_path": "/content/nmdc/src/", # path to directory containing `conf.py` file + "conf_py_path": "/content/home/src/", # path to directory containing `conf.py` file } diff --git a/content/nmdc/src/explanation/community_conversations.md b/content/home/src/explanation/community_conversations.md similarity index 100% rename from content/nmdc/src/explanation/community_conversations.md rename to content/home/src/explanation/community_conversations.md diff --git a/content/nmdc/src/explanation/fair_data.md b/content/home/src/explanation/fair_data.md similarity index 100% rename from content/nmdc/src/explanation/fair_data.md rename to content/home/src/explanation/fair_data.md diff --git a/content/nmdc/src/explanation/publications.md b/content/home/src/explanation/publications.md similarity index 100% rename from content/nmdc/src/explanation/publications.md rename to content/home/src/explanation/publications.md diff --git a/content/nmdc/src/howto_guides/api_gui.md b/content/home/src/howto_guides/api_gui.md similarity index 100% rename from content/nmdc/src/howto_guides/api_gui.md rename to content/home/src/howto_guides/api_gui.md diff --git a/content/nmdc/src/howto_guides/data_plan.md b/content/home/src/howto_guides/data_plan.md similarity index 100% rename from content/nmdc/src/howto_guides/data_plan.md rename to content/home/src/howto_guides/data_plan.md diff --git a/content/nmdc/src/howto_guides/globus.md b/content/home/src/howto_guides/globus.md similarity index 100% rename from content/nmdc/src/howto_guides/globus.md rename to content/home/src/howto_guides/globus.md diff --git a/content/nmdc/src/howto_guides/portal_guide.md b/content/home/src/howto_guides/portal_guide.md similarity index 100% rename from content/nmdc/src/howto_guides/portal_guide.md rename to content/home/src/howto_guides/portal_guide.md diff --git a/content/nmdc/src/howto_guides/run_workflows.md b/content/home/src/howto_guides/run_workflows.md similarity index 100% rename from content/nmdc/src/howto_guides/run_workflows.md rename to content/home/src/howto_guides/run_workflows.md diff --git a/content/nmdc/src/howto_guides/submit2nmdc.md b/content/home/src/howto_guides/submit2nmdc.md similarity index 100% rename from content/nmdc/src/howto_guides/submit2nmdc.md rename to content/home/src/howto_guides/submit2nmdc.md diff --git a/content/nmdc/src/index.rst b/content/home/src/index.rst similarity index 100% rename from content/nmdc/src/index.rst rename to content/home/src/index.rst diff --git a/content/nmdc/src/overview/nmdc_overview.rst b/content/home/src/overview/nmdc_overview.rst similarity index 100% rename from content/nmdc/src/overview/nmdc_overview.rst rename to content/home/src/overview/nmdc_overview.rst diff --git a/content/nmdc/src/reference/combined_workflow_docs.rst b/content/home/src/reference/combined_workflow_docs.rst similarity index 100% rename from content/nmdc/src/reference/combined_workflow_docs.rst rename to content/home/src/reference/combined_workflow_docs.rst diff --git a/content/nmdc/src/reference/data_portal.md b/content/home/src/reference/data_portal.md similarity index 100% rename from content/nmdc/src/reference/data_portal.md rename to content/home/src/reference/data_portal.md diff --git a/content/nmdc/src/tutorials/nav_data_portal.md b/content/home/src/tutorials/nav_data_portal.md similarity index 100% rename from content/nmdc/src/tutorials/nav_data_portal.md rename to content/home/src/tutorials/nav_data_portal.md diff --git a/content/nmdc/src/tutorials/prepare_metadata.md b/content/home/src/tutorials/prepare_metadata.md similarity index 100% rename from content/nmdc/src/tutorials/prepare_metadata.md rename to content/home/src/tutorials/prepare_metadata.md diff --git a/content/nmdc/src/tutorials/run_workflows.md b/content/home/src/tutorials/run_workflows.md similarity index 100% rename from content/nmdc/src/tutorials/run_workflows.md rename to content/home/src/tutorials/run_workflows.md diff --git a/content/nmdc/src/tutorials/submission_portal.md b/content/home/src/tutorials/submission_portal.md similarity index 100% rename from content/nmdc/src/tutorials/submission_portal.md rename to content/home/src/tutorials/submission_portal.md diff --git a/content/nmdc/src/workflows.rst b/content/home/src/workflows.rst similarity index 100% rename from content/nmdc/src/workflows.rst rename to content/home/src/workflows.rst diff --git a/docker-compose.yml b/docker-compose.yml index 2d31455..4049ea9 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -9,15 +9,15 @@ services: volumes: - ./legacy/nmdc-documentation/src:/app/src - nmdc-documentation: - # Use the container image built from `content/nmdc/Dockerfile`. + home-docs: + # Use the container image built from `content/home/Dockerfile`. build: - context: content/nmdc + context: content/home dockerfile: Dockerfile ports: - "5002:8000" volumes: - - ./content/nmdc/src:/app/src + - ./content/home/src:/app/src runtime-documentation: # Use the container image built from `pullers/runtime_docs/Dockerfile`. @@ -40,7 +40,7 @@ services: restart: unless-stopped depends_on: - legacy-nmdc-documentation - - nmdc-documentation + - home-docs - runtime-documentation - workflow-documentation ports: