Skip to content
Snippets Groups Projects
Commit 912427b4 authored by youngsuKim-CSUSB's avatar youngsuKim-CSUSB
Browse files

Test templates

parent b9c11cc0
No related branches found
No related tags found
No related merge requests found
<!-- This test file is based on
https://github.com/pangeo-data/pangeo-custom-jupyterhub-templates/blob/master/templates/page.html -->
{% extends "templates/login.html" %} {% extends "templates/login.html" %}
{% block main %} {% block main %}
<div class="container text-center pangeo"> <div class="container text-center csusb">
<h1>{{ pangeo_hub_title or 'Pangeo JupyterHub' }}</h1> <h1>{{ csusb_hub_title or 'CSUSB JupyterHub' }}</h1>
<h2>{{ pangeo_hub_subtitle }}</h2> <h2>{{ csusb_hub_subtitle }}</h2>
<p> <p>
{% if pangeo_welcome %} {% if csusb_welcome %}
{{ (pangeo_welcome | safe) }} {{ (csusb_welcome | safe) }}
{% else %} {% else %}
Welcome to this Pangeo JupyterHub. For more information about Pangeo, Welcome to this Cal State San Bernardino JupyterHub. For more information about HPC,
visit <a href="http://pangeo.io">pangeo.io</a>. visit <a href="https://www.csusb.edu › high-performance-0">CSUSB High Performance Computing Initiative</a>.
{% endif %} {% endif %}
</p> </p>
</div> </div>
......
<!-- This test file is based on
https://github.com/pangeo-data/pangeo-custom-jupyterhub-templates/blob/master/templates/page.html -->
{% extends "templates/page.html" %}
{% block stylesheet %}
<link rel="stylesheet" href="{{ static_url("extra-assets/css/csusb-style.css") }}" type="text/css"/>
<link rel="stylesheet" href="{{ static_url("css/style.min.css") }}" type="text/css"/>
{% endblock %}
{# requires jupyerhub > 0.9.4 https://github.com/jupyterhub/jupyterhub/pull/2296 #}
{% block logo %}
<span id="jupyterhub-logo" class="pull-left">
<a href="{{logo_url or base_url}}"><img src="{{static_url("extra-assets/images/jupyter_csusb_small_logo.png") }}" alt='JupyterHub' class='jpy-logo' title='Home'/></a>
</span>
{% endblock %}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment