Add page titles
This commit is contained in:
@@ -59,4 +59,4 @@ def contact():
|
|||||||
return render_template('contact.html', user_message='Your message has been sent!')
|
return render_template('contact.html', user_message='Your message has been sent!')
|
||||||
return render_template('contact.html', error=True, user_message='An error occurred.')
|
return render_template('contact.html', error=True, user_message='An error occurred.')
|
||||||
else:
|
else:
|
||||||
return render_template('contact.html')
|
return render_template('contact.html', page_title='Contact - ')
|
||||||
|
@@ -73,7 +73,8 @@ def projects():
|
|||||||
articles=articles_to_return,
|
articles=articles_to_return,
|
||||||
all_categories=categories,
|
all_categories=categories,
|
||||||
title='Projects',
|
title='Projects',
|
||||||
description='A selection of projects I\'ve been involved in')
|
page_title='Projects - ',
|
||||||
|
description='A selection of projects I\'ve been involved in1')
|
||||||
|
|
||||||
@app.route('/projects/category/<category>/')
|
@app.route('/projects/category/<category>/')
|
||||||
def category(category):
|
def category(category):
|
||||||
|
Reference in New Issue
Block a user