We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00a0111 commit ae4dfa8Copy full SHA for ae4dfa8
application/home/home.py
@@ -14,7 +14,7 @@ def home():
14
"""Homepage."""
15
products = fetch_products(app)
16
return render_template('index.jinja2',
17
- title='Flask Blueprint Tutorial',
+ title='Flask Blueprint Demo',
18
subtitle='Demonstration of Flask blueprints in action.',
19
template='home-template',
20
products=products)
application/home/templates/index.jinja2
@@ -10,7 +10,7 @@
10
{% include "navigation.jinja2" %}
11
12
<div class="container">
13
- <h1>{{ title }}</h1>
+ <h1>{{ title }} | Hackers and Slackers</h1>
<h2>{{ subtitle }}</h2>
<div class="resource-links">
<p class="resource-link">Github repo found <a href="https://github.com/hackersandslackers/flask-blueprint-tutorial">here.</a></p>
0 commit comments