23 lines
		
	
	
		
			825 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			825 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<nav id="topnav">
 | 
						|
  <span>
 | 
						|
    <a class="site-title" href="{{url_for('topics.all_topics')}}">{{config.SITE_NAME}}</a>
 | 
						|
  </span>
 | 
						|
  <span>
 | 
						|
  {% if not is_logged_in() %}
 | 
						|
    Welcome, guest. Please <a href="{{url_for('users.sign_up')}}">sign up</a> or <a href="{{url_for('users.log_in')}}">log in</a>
 | 
						|
  {% else %}
 | 
						|
    {% with user = get_active_user() %}
 | 
						|
      Welcome, <a href="{{ url_for("users.page", username = user.username) }}">{{user.username}}</a>
 | 
						|
      •
 | 
						|
      <a href="{{ url_for("users.settings", username = user.username) }}">Settings</a>
 | 
						|
      •
 | 
						|
      <a href="{{ url_for("users.inbox", username = user.username) }}">Inbox</a>
 | 
						|
      {% if user.is_mod() %}
 | 
						|
        •
 | 
						|
        <a href="{{ url_for("mod.user_list") }}">User list</a>
 | 
						|
      {% endif %}
 | 
						|
    {% endwith %}
 | 
						|
  {% endif %}
 | 
						|
  </span>
 | 
						|
</nav>
 |