chore(templates): flip branding name and grad year

This commit is contained in:
Ethan Nguyen 2021-04-20 20:09:41 -04:00
parent 2d95c9097a
commit e891eaf0d6
No known key found for this signature in database
GPG Key ID: B4CA5339AF911920
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
{% extends "base.html" %}
{% block content %}
<h2>Welcome to {{ settings.SENIOR_GRAD_YEAR }} {{ settings.BRANDING_NAME }}</h2>
<h2>Welcome to {{ settings.BRANDING_NAME }} {{ settings.SENIOR_GRAD_YEAR }}</h2>
<p>
This is intended to be a resource for:

View File

@ -26,13 +26,13 @@
})
</script>
<title>{{ settings.SENIOR_GRAD_YEAR }} {{ settings.BRANDING_NAME }}</title>
<title>{{ settings.BRANDING_NAME }} {{ settings.SENIOR_GRAD_YEAR }}</title>
</head>
<body>
<a class="visually-hidden-focusable" href="#content">Skip to main content</a>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="{% url "authentication:index" %}">{{ settings.SENIOR_GRAD_YEAR }} {{ settings.BRANDING_NAME }}</a>
<a class="navbar-brand" href="{% url "authentication:index" %}">{{ settings.BRANDING_NAME }} {{ settings.SENIOR_GRAD_YEAR }}</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>