Fix the problems

This commit is contained in:
Chris Hill-Scott
2017-06-14 16:53:16 +01:00
parent b999378251
commit 86b4a27ca3
2 changed files with 6 additions and 2 deletions

View File

@@ -113,5 +113,5 @@ def roadmap():
@main.route('/features')
def roadmap():
def features():
return render_template('views/features.html')

View File

@@ -62,7 +62,11 @@
{% else %}
<li>
<a href="{{ url_for('main.features' )}}">Features</a>
<a href="{{ url_for('main.pricing' )}}">Pricing</a>
</li>
<li>
<a href="{{ url_for('main.pricing' )}}">Pricing</a>
</li>
<li>
<a href="{{ url_for('main.sign_in' )}}">Sign in</a>
</li>
{% endif %}