Downloaded G2 templates. Added notes for DataSnipper and Recast. Added API keys and a few other small items.

This commit is contained in:
Norm Rasmussen
2023-11-09 22:12:16 -05:00
parent 3edcfc22bb
commit fa83a6fc7a
21 changed files with 522 additions and 3 deletions

View File

@ -0,0 +1,23 @@
<header class="np-box-header np-header-color ">
<a class="np-box-header-link" href="{% route home %}">
{% if current_school.logo_url %}
<img
alt="{{ current_school.name }}"
src="https://s3.amazonaws.com/static.northpass.com/G2/Logo-G2University.png"
class="np-box-header-logo logo-header-minimal"
/>
{% else %}
<span class="np-school-name np-header-font-color">
{{ current_school.name }}
</span>
{% endif %}
</a>
</header>
{% include "messages" %}
<script>
const logo = document.getElementsByClassName('logo-header-minimal')[0];
logo.style.height = "70px";
logo.style.marginTop="2rem";
</script>