Split Help page into Trial Mode and Pricing pages

- Add routes
- Add footer links
- Make heading size consistent on Cookies page
This commit is contained in:
Henry Hadlow
2016-04-04 15:22:30 +01:00
parent dc5c552f5f
commit 246023616a
6 changed files with 149 additions and 128 deletions

View File

@@ -23,9 +23,14 @@ def cookies():
return render_template('views/cookies.html')
@main.route('/help')
def help():
return render_template('views/help.html')
@main.route('/trial-mode')
def trial_mode():
return render_template('views/trial-mode.html')
@main.route('/pricing')
def pricing():
return render_template('views/pricing.html')
@main.route('/terms')