23 lines
675 B
Plaintext
23 lines
675 B
Plaintext
<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> |