From 2d56defc4f5fa87c9ee79edade09fdc84ace6867 Mon Sep 17 00:00:00 2001 From: youngsuKim-CSUSB <81013158+youngsuKim-CSUSB@users.noreply.github.com> Date: Mon, 13 Jun 2022 23:47:56 -0700 Subject: [PATCH] test login.html --- login.html | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/login.html b/login.html index f246dc1..0eb9a6d 100644 --- a/login.html +++ b/login.html @@ -2,24 +2,23 @@ https://github.com/pangeo-data/pangeo-custom-jupyterhub-templates/blob/master/templates/page.html --> {% extends "templates/login.html" %} -<!-- {% set csusb_hub_title = 'Welcome to Cal State San Bernardino JupyterHub' %} --> -<!-- {% set csusb_hub_subtitle = 'test announcement message' %} --> -<!-- {% set csusb_welcome = 'For more information about HPC at CSUSB, visit <a href="https://www.csusb.edu/academic-technologies-innovation/xreal-lab-and-high-performance-computing/high-performance" target="_blank">CSUSB High Performance Computing Initiative</a>' %} --> -<!-- -{% block login_widget %} -Where is login_widget located -{% endblock %} --> +{% set announcement = 'test announcement message' %} {% block main %} <div class="container text-center csusb"> - <h1>{{ csusb_hub_title }}</h1> - <!-- <h4> + <h1>{{ csusb_hub_title or 'Welcome to Cal State San Bernardino JupyterHub' }}</h1> + <h2>{{ csusb_hub_subtitle }}</h2> + <h4> <p> {% if csusb_welcome %} {{ (csusb_welcome | safe) }} {% else %} </p> - </h4> --> + <p>For more information about HPC at CSUSB, + visit <a href="https://www.csusb.edu/academic-technologies-innovation/xreal-lab-and-high-performance-computing/high-performance" target="_blank">CSUSB High Performance Computing Initiative</a> + {% endif %} </p> + </h4> </div> {{ super() }} -{% endblock %} \ No newline at end of file +{% endblock %} + -- GitLab