aboutsummaryrefslogtreecommitdiffstats
path: root/alphabetlearning/templates/base.html
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-12-01 20:31:22 +0000
committerMatthew Lemon <y@yulqen.org>2024-12-01 20:31:22 +0000
commit58df9d60f216eab00c487c8f473e2a5547f5cfc9 (patch)
treee63b628926363e441ab4f272136b6370a03cbb6c /alphabetlearning/templates/base.html
parenta4d3966ce2c4be2fafd3cc0f92aeda07b608bd8b (diff)
wip: working on the form and front page
Diffstat (limited to 'alphabetlearning/templates/base.html')
-rw-r--r--alphabetlearning/templates/base.html14
1 files changed, 1 insertions, 13 deletions
diff --git a/alphabetlearning/templates/base.html b/alphabetlearning/templates/base.html
index a413cfc..533d0e8 100644
--- a/alphabetlearning/templates/base.html
+++ b/alphabetlearning/templates/base.html
@@ -60,7 +60,7 @@
<nav class="navbar navbar-expand-lg navbar-light bg-white">
<div class="container-fluid">
<a class="navbar-brand" href="{% url "home" %}">
- <img src="{% static "images/AL_long_logo_black_grey.png" %}" width=300px alt="Alphabet Learning Logo">
+ <img style="margin-left: 2rem; margin-top: 20px;" src="{% static "images/AL_long_logo_black_grey.png" %}" width=300px alt="Alphabet Learning Logo">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
@@ -84,17 +84,6 @@
<!-- </div> -->
</li>
<li class="nav-item">
- {% if request.user.is_authenticated %}
- <a class="nav-link text-gray fw-bold" href="{% url "users:detail" request.user.id %}">{{ request.user }}</a>
- {% else %}
- <a class="nav-link text-dark fw-bold" href="{% url "account_login" %}">Log in</a>
- {% endif %}
- </li>
-
- <li class="nav-item">
- <a class="nav-link text-dark fw-bold" href="{% url "resources:resource_list" %}">Resources</a>
- </li>
- <li class="nav-item">
<a class="nav-link text-dark fw-bold"
href="https://www.tes.com/teaching-resources/shop/alphabetlearning"
target="_blank">TES Shop</a>
@@ -116,7 +105,6 @@
</div>
</div>
</nav>
- <div class="border-bottom border-dark border-1"></div>
</header>
<main>
{% block body %}