jupyterhub.html 829 B

12345678910111213
  1. {% if site.use_jupyterhub_button %}
  2. {% if site.use_jupyterlab %}
  3. {% assign hub_app="lab" %}
  4. {% else %}
  5. {% assign hub_app="notebook" %}
  6. {% endif %}
  7. {% capture interact_url_jupyterhub %}hub/user-redirect/git-pull?repo={{ site.binder_repo_base }}/{{ site.binder_repo_org }}/{{ site.binder_repo_name }}&branch={{ site.binder_repo_branch }}&subPath={{ page.interact_link | url_encode }}&app={{ hub_app }}{% endcapture %}
  8. {% capture interact_icon_jupyterhub %}{{ site.images_url | relative_url }}/logo_jupyterhub.svg{% endcapture %}
  9. <a href="{{ site.jupyterhub_url }}/{{ interact_url_jupyterhub }}"><button class="interact-button" id="interact-button-jupyterhub"><img class="interact-button-logo" src="{{ interact_icon_jupyterhub }}" alt="Interact" />{{ site.jupyterhub_interact_text }}</button></a>
  10. {% endif %}