I am trying to split the home and others I have looked online and I cant find anything that has worked. I am using flask and bootstap 4.4.1 If you need to see more of the code please ask. It would mean a lot if you could help.
Example of what I would like it to look like
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbar">
<div class="navbar-nav ml-auto">
{% if user.is_authenticated %}
<a class="nav-item nav-link" id="home" href="/">Home</a>
<a class="nav-item nav-link" id="logout" href="/logout">Logout</a>
<a class="nav-item nav-link" id="about-us" href="/about-us">About Us</a>
{% else %}
<a class="nav-item nav-link" id="home" href="/">Home</a>
<a class="nav-item nav-link" id="login" href="/login">Login</a>
<a class="nav-item nav-link" id="signUp" href="/sign-up">Sign Up</a>
<a class="nav-item nav-link" id="about-us" href="/about-us">About Us</a>
{% endif %}
</div>
</div>
</nav>