One week into my Django project and I'm currently in the process of building a Navigation Bar. Here is the source code snippet:
{% load static %}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" >
<link rel = "stylesheet" type = "text/css" href="{% static 'music/style.css' %}" />
<nav class="navbar navbar-default">
<div class="container-fluid">
<!--LOGO-->
<div class = "navbar-header">
<a class="navbar-brand" href="{%url 'music:index'%}">Pleer...</a>
</div>
</div>
</nav>
{% if all_albums %}
<h3 class="text-muted"> Albums</h3>
<ul>
{% for album in all_albums %}
<li class="text-primary"><a href="{%url 'music:detail' album.id %}"><b class="text-danger">{{album.album_title}}</b></a></li>
{% endfor %}
</ul>
{% else %}
<h2>NO ALBUM FOUND</h2>
{% endif %}
However, despite implementing this code, I am only seeing a simple link without the navigation bar. Is there something I'm overlooking? Any assistance would be greatly appreciated.