Skip to content

Instantly share code, notes, and snippets.

@Porter97
Last active February 3, 2020 17:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Porter97/5b3a8f1f09175d4464d4573bd7e24c54 to your computer and use it in GitHub Desktop.
Save Porter97/5b3a8f1f09175d4464d4573bd7e24c54 to your computer and use it in GitHub Desktop.
#...
<ul class="nav navbar-nav">
<li><a href="{{ url_for('main.index') }}">Home</a></li>
{% if current_user.is_authenticated %}
<li><a href="{{ url_for('main.user', username=current_user.username) }}">Profile</a></li>
{% endif %}
</ul>
#...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment