For your reference, below is a list of the articles in this series.

Note 1: If you are looking for the legacy version of this tutorial, it’s .

Note 2: If you would like to support my work on this blog, or just don’t have patience to wait for weekly articles, I am offering the complete version of this tutorial packaged as an ebook or a set of videos. For more information, visit courses.miguelgrinberg.com.

After you complete , you should have a fully working, yet simple web application that has the following file structure:

To run the application you set the in your terminal session, and then execute flask run. This starts a web server with the application, which you can open by typing the http://localhost:5000/ URL in your web browser’s address bar.

In this chapter you will continue working on the same application, and in particular, you are going to learn how to generate more elaborate web pages that have a complex structure and many dynamic components. If anything about the application or the development workflow so far isn’t clear, please review again before continuing.

The GitHub links for this chapter are: Browse, , Diff.

I want the home page of my microblogging application to have a heading that welcomes the user. For the moment, I’m going to ignore the fact that the application does not have the concept of users yet, as this is going to come later. Instead, I’m going to use a mock user, which I’m going to implement as a Python dictionary, as follows:

  1. user = {'username': 'Miguel'}

Creating mock objects is a useful technique that allows you to concentrate on one part of the application without having to worry about other parts of the system that don’t exist yet. I want to design the home page of my application, and I don’t want the fact that I don’t have a user system in place to distract me, so I just make up a user object so that I can keep going.

The view function in the application returns a simple string. What I want to do now is expand that returned string into a complete HTML page, maybe something like this:

app/routes.py: Return complete HTML page from view function

  1. from app import app
  2. @app.route('/')
  3. @app.route('/index')
  4. def index():
  5. return '''
  6. <html>
  7. <head>
  8. <title>Home Page - Microblog</title>
  9. </head>
  10. <body>
  11. <h1>Hello, ''' + user['username'] + '''!</h1>
  12. </body>
  13. </html>'''

If you are not familiar with HTML, I recommend that you read on Wikipedia for a brief introduction.

Update the view function as shown above and give the application a try to see how it looks in your browser.

If you could keep the logic of your application separate from the layout or presentation of your web pages, then things would be much better organized, don’t you think? You could even hire a web designer to create a killer web site while you code the application logic in Python.

Templates help achieve this separation between presentation and business logic. In Flask, templates are written as separate files, stored in a templates folder that is inside the application package. So after making sure that you are in the microblog directory, create the directory where templates will be stored:

Below you can see your first template, which is similar in functionality to the HTML page returned by the index() view function above. Write this file in app/templates/index.html:

app/templates/index.html: Main page template

  1. <html>
  2. <head>
  3. <title>{{ title }} - Microblog</title>
  4. </head>
  5. <body>
  6. <h1>Hello, {{ user.username }}!</h1>
  7. </body>
  8. </html>

This is a mostly standard, very simply HTML page. The only interesting thing in this page is that there are a couple of placeholders for the dynamic content, enclosed in {{ ... }} sections. These placeholders represent the parts of the page that are variable and will only be known at runtime.

Now that the presentation of the page was offloaded to the HTML template, the view function can be simplified:

app/routes.py: Use render\_template() function

  1. from flask import render_template
  2. from app import app
  3. @app.route('/')
  4. def index():
  5. user = {'username': 'Miguel'}
  6. return render_template('index.html', title='Home', user=user)

This looks much better, right? Try this new version of the application to see how the template works. Once you have the page loaded in your browser, you may want to view the source HTML and compare it against the original template.

The operation that converts a template into a complete HTML page is called rendering. To render the template I had to import a function that comes with the Flask framework called render_template(). This function takes a template filename and a variable list of template arguments and returns the same template, but with all the placeholders in it replaced with actual values.

The render_template() function invokes the Jinja2 template engine that comes bundled with the Flask framework. Jinja2 substitutes {{ ... }} blocks with the corresponding values, given by the arguments provided in the render_template() call.

You have seen how Jinja2 replaces placeholders with actual values during rendering, but this is just one of many powerful operations Jinja2 supports in template files. For example, templates also support control statements, given inside {% ... %} blocks. The next version of the index.html template adds a conditional statement:

app/templates/index.html: Conditional statement in template

Now the template is a bit smarter. If the view function forgets to pass a value for the title placeholder variable, then instead of showing an empty title the template will provide a default one. You can try how this conditional works by removing the title argument in the render_template() call of the view function.

The logged in user will probably want to see recent posts from connected users in the home page, so what I’m going to do now is extend the application to support that.

app/routes.py: Fake posts in view function

  1. from flask import render_template
  2. from app import app
  3. @app.route('/')
  4. @app.route('/index')
  5. def index():
  6. user = {'username': 'Miguel'}
  7. {
  8. 'author': {'username': 'John'},
  9. 'body': 'Beautiful day in Portland!'
  10. },
  11. {
  12. 'author': {'username': 'Susan'},
  13. 'body': 'The Avengers movie was so cool!'
  14. }
  15. ]
  16. return render_template('index.html', title='Home', user=user, posts=posts)

To represent user posts I’m using a list, where each element is a dictionary that has author and body fields. When I get to implement users and blog posts for real I’m going to try to preserve these field names as much as possible, so that all the work I’m doing to design and test the home page template using these fake objects will continue to be valid when I introduce real users and posts.

On the template side I have to solve a new problem. The list of posts can have any number of elements, it is up to the view function to decide how many posts are going to be presented in the page. The template cannot make any assumptions about how many posts there are, so it needs to be prepared to render as many posts as the view sends in a generic way.

For this type of problem, Jinja2 offers a control structure:

app/templates/index.html: for-loop in template

  1. <html>
  2. <head>
  3. {% if title %}
  4. <title>{{ title }} - Microblog</title>
  5. {% else %}
  6. <title>Welcome to Microblog</title>
  7. {% endif %}
  8. </head>
  9. <body>
  10. <h1>Hi, {{ user.username }}!</h1>
  11. {% for post in posts %}
  12. <div><p>{{ post.author.username }} says: <b>{{ post.body }}</b></p></div>
  13. {% endfor %}
  14. </body>
  15. </html>

Simple, right? Give this new version of the application a try, and be sure to play with adding more content to the posts list to see how the template adapts and always renders all the posts the view function sends.

Mock Posts

Most web applications these days have a navigation bar at the top of the page with a few frequently used links, such as a link to edit your profile, to login, logout, etc. I can easily add a navigation bar to the index.html template with some more HTML, but as the application grows I will be needing this same navigation bar in other pages. I don’t really want to have to maintain several copies of the navigation bar in many HTML templates, it is a good practice to not repeat yourself if that is possible.

Jinja2 has a template inheritance feature that specifically addresses this problem. In essence, what you can do is move the parts of the page layout that are common to all templates to a base template, from which all other templates are derived.

So what I’m going to do now is define a base template called base.html that includes a simple navigation bar and also the title logic I implemented earlier. You need to write the following template in file app/templates/base.html:

app/templates/base.html: Base template with navigation bar

In this template I used the block control statement to define the place where the derived templates can insert themselves. Blocks are given a unique name, which derived templates can reference when they provide their content.

With the base template in place, I can now simplify index.html by making it inherit from base.html:

app/templates/index.html: Inherit from base template

  1. {% extends "base.html" %}
  2. {% block content %}
  3. <h1>Hi, {{ user.username }}!</h1>
  4. {% for post in posts %}
  5. <div><p>{{ post.author.username }} says: <b>{{ post.body }}</b></p></div>
  6. {% endfor %}