November 2015
Beginner to intermediate
840 pages
26h 30m
English
Now that Django knows where to find the template, we can finally create it. Create a new file /templates/base.html and start by coding a basic HTML page, as shown in Example 4.47.
Example 4.47: Project Code
templates/base.html in 507d342e9c
1 <!DOCTYPE html> 2 <html lang="en"> 3 4 <head> 5 <meta charset="utf-8"> 6 <title> 7 Startup Organizer 8 </title> 9 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> 10 <meta name="viewport" content="width=device-width, initial-scale=1"> 11 <!--[if IE]><script 12 src="http://html5shiv.googlecode.com/svn/trunk/html5.js"> 13 </script><![endif]--> ...
Read now
Unlock full access