removed scroll locking garbage
This commit is contained in:
parent
f536cb3f32
commit
a1f97a09fb
@ -1,5 +1,5 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html class="is-clipped" xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
@ -19,24 +19,24 @@
|
|||||||
<a href="{{ url_for('main.index') }}" class="navbar-item">
|
<a href="{{ url_for('main.index') }}" class="navbar-item">
|
||||||
Home
|
Home
|
||||||
</a>
|
</a>
|
||||||
{% if current_user.is_authenticated %}
|
{% if current_user.is_authenticated %}
|
||||||
<a href="{{ url_for('main.profile') }}" class="navbar-item">
|
<a href="{{ url_for('main.profile') }}" class="navbar-item">
|
||||||
Profile
|
Profile
|
||||||
</a>
|
</a>
|
||||||
{% endif %}
|
<a href="{{ url_for('main.quotes') }}" class="navbar-item">
|
||||||
{% if not current_user.is_authenticated %}
|
Quotes
|
||||||
<a href="{{ url_for('auth.login') }}" class="navbar-item">
|
</a>
|
||||||
Login
|
{% endif %}
|
||||||
</a>
|
{% if not current_user.is_authenticated %}
|
||||||
<a href="{{ url_for('auth.signup') }}" class="navbar-item">
|
<a href="{{ url_for('auth.login') }}" class="navbar-item">
|
||||||
Sign Up
|
Login
|
||||||
</a>
|
</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if current_user.is_authenticated %}
|
{% if current_user.is_authenticated %}
|
||||||
<a href="{{ url_for('auth.logout') }}" class="navbar-item">
|
<a href="{{ url_for('auth.logout') }}" class="navbar-item">
|
||||||
Logout
|
Logout
|
||||||
</a>
|
</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user