diff --git a/deploy/spin/web-frontend/templates/index.html b/deploy/spin/web-frontend/templates/index.html index c200642..fe28010 100644 --- a/deploy/spin/web-frontend/templates/index.html +++ b/deploy/spin/web-frontend/templates/index.html @@ -4,32 +4,63 @@ {% endblock %} {% block main %} -
-

AIMMDB

+

Explore from your web browser

- AIMMDB is a data access and search tool for multimodal scientific data built on top of [tiled](https://github.com/bluesky/tiled). - Currently aimmdb is focused on xray absorption spectroscopy (XAS) data. + Use a basic, data-oriented web interface to navigate Tiled.

+ + + +
+
+

Explore from Python

+

+ Install and use Tiled's Python client from Python, IPython, or Jupyter. +

+
$ pip install "tiled[client]"
+$ python
+>>> from tiled.client import from_uri
+>>> client = from_uri("{{ root_url }}")
+ {% if binder_link %} + Alternatively, try it in the cloud on Binder. + {% endif %}
-
-

Funding Acknowledgement

+

Explore the API

+

+ Tiled includes interactive OpenAPI documentation you can use in your web browser. +

- This research is based upon work supported by the U.S. Department of Energy, Office of Science, Office Basic Energy Sciences, under Award Number FWP PS-030. This research used resources of the Center for Functional Nanomaterials (CFN), which is a U.S. Department of Energy Office of Science User Facility, at Brookhaven National Laboratory under Contract No. DE-SC0012704. + The Tiled API can be accessed from any Internet-connected software, + including graphical programs that accept URLs and commandline + utilities like wget and curl. +

+ + - -
- -
+
-

Usage

+

Learn

- The database can be browsed by navigating to the - - Try it - - page. This page allows you to nagivate datasets. +

+ For tutorials, guides, and more details, see Tiled's project documentation. +

+

+

+ Like Jupyter Notebook, Tiled is something you can easily run yourself, on your laptop. + Tiled can also scale up for large multi-user deployment, like JupyterHub. +

+ + + +
{% endblock %} \ No newline at end of file