CommonLounge Archive

Introduction to HTML and Templates

May 17, 2018

What’s a template, you may ask?

A template is a file that we can re-use to present different information in a consistent format – for example, you could use a template to help you write a letter because although each letter might contain a different message and be addressed to a different person, they will share the same format.

A Django template’s format is described in a language called HTML (that’s the HTML we mentioned in the first chapter, How the Internet works).

What is HTML?

HTML is code that is interpreted by your web browser – such as Chrome, Firefox or Safari – to display a web page for the user.

HTML stands for “HyperText Markup Language”. HyperText means it’s a type of text that supports hyperlinks between pages. Markup means we have taken a document and marked it up with code to tell something (in this case, a browser) how to interpret the page. HTML code is built with tags, each one starting with < and ending with >. These tags represent markup elements.

Your first template!

Creating a template means creating a template file. Everything is a file, right? You have probably noticed this already.

Templates are saved in blog/templates/blog directory. So first create a directory called templatesinside your blog directory. Then create another directory called blog inside your templates directory:

blog
└───templates
    └───blog

(You might wonder why we need two directories both called blog – as you will discover later, this is simply a useful naming convention that makes life easier when things start to get more complicated.)

And now create a post_list.html file (just leave it blank for now) inside the blog/templates/blogdirectory.

See how your website looks now: http://127.0.0.1:8000/

If you still have an errorTemplateDoesNotExist, try to restart your server. Go to the command line, stop the server by pressing Ctrl+C (Control and C keys together) and start it again by running a python manage.py runserver command.

On a Windows machine, even after restarting the server, you may get the error TemplateDoesNotExist. Open mysite/settings.py find TEMPLATES. In that line 'DIRS' add path of your templates directory 'DIRS' : [r'path_of_your_templates_directory']. Remember to put r as the prefix.

No error anymore! Congratulations :) However, your website isn’t actually publishing anything except an empty page, because your template is empty too. We need to fix that.

Add the following to your template file:

blog/templates/blog/post_list.html

<html>
<body>
    <p>Hi there!</p>
    <p>It works!</p>
</body>
</html>

So how does your website look now? Visit it to find out: http://127.0.0.1:8000/

It worked! Nice work there :)

  • The most basic tag, <html>, is always the beginning of any web page and </html> is always the end. As you can see, the whole content of the website goes between the beginning tag <html> and closing tag </html> .
  • <p> is a tag for paragraph elements; </p> closes each paragraph.

Head and body

Each HTML page is also divided into two elements: head and body.

  • head is an element that contains information about the document that is not displayed on the screen.
  • body is an element that contains everything else that is displayed as part of the web page.

We use <head> to tell the browser about the configuration of the page, and <body> to tell it what’s actually on the page.

For example, you can put a web page title element inside the <head>, like this:

blog/templates/blog/post_list.html

<html>
    <head>
        <title>My blog</title>
    </head>
    <body>
        <p>Hi there!</p>
        <p>It works!</p>
    </body>
</html>

Save the file and refresh your page.

Notice how the browser has understood that “My blog” is the title of your page? It has interpreted <title>My blog</title> and placed the text in the title bar of your browser (it will also be used for bookmarks and so on).

Probably you have also noticed that each opening tag is matched by a closing tag, with a /, and that elements are nested (i.e. you can’t close a particular tag until all the ones that were inside it have been closed too).

It’s like putting things into boxes. You have one big box, <html></html>; inside it there is <body></body>, and that contains still smaller boxes: <p></p>.

You need to follow these rules of closing tags, and of nesting elements – if you don’t, the browser may not be able to interpret them properly and your page will display incorrectly.

Customize your template

You can now have a little fun and try to customize your template! Here are a few useful tags for that:

  • <h1>A heading</h1> for your most important heading
  • <h2>A sub-heading</h2> for a heading at the next level
  • <h3>A sub-sub-heading</h3> …and so on, up to <h6>
  • <p>A paragraph of text</p>
  • <em>text</em> emphasizes your text
  • <strong>text</strong> strongly emphasizes your text
  • <br> goes to another line (you can’t put anything inside br and there’s no closing tag)
  • <a href="https://commonlounge.com">link</a> creates a link
  • <ul><li>first item</li><li>second item</li></ul> makes an unordered list, just like this one!
  • <ol><li>first item</li><li>second item</li></ol> makes an ordered list (i.e. it has numbering like 1. 2. 3. etc)
  • <div></div> defines a section of the page

Here’s an example of a full template, copy and paste it into blog/templates/blog/post_list.html:

 <html>
    <head>
        <title>My Blog</title>
    </head>
    <body>
        <div>
            <h1><a href="/">My Blog</a></h1>
        </div>
        <div>
            <p>published: 14.06.2014, 12:14</p>
            <h2><a href="">My first post</a></h2>
            <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.</p>
        </div>
        <div>
            <p>published: 14.06.2014, 12:14</p>
            <h2><a href="">My second post</a></h2>
            <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut f.</p>
        </div>
    </body>
</html>

We’ve created three div sections here.

  • The first div element contains the title of our blog – it’s a heading and a link
  • Another two div elements contain our blog posts with a published date, h2 with a post title that is clickable and two ps (paragraph) of text, one for the date and one for our blog post.

It gives us this effect:

Yaaay! But so far, our template only ever displays exactly the same information – whereas earlier we were talking about templates as allowing us to display different information in the same format.

What we really want to do is display real posts added in our Django admin – and that’s where we’re going next. Let’s check your understanding with a few quick questions!


© 2016-2022. All rights reserved.