Vinay Jose commited on
Commit
4ba300b
·
unverified ·
1 Parent(s): 7d41d4b

Create layout.html

Browse files
Files changed (1) hide show
  1. templates/layout.html +15 -0
templates/layout.html ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+ <html lang="">
3
+ <head>
4
+ <title>Contact App</title>
5
+ </head>
6
+ <body>
7
+ <main>
8
+ <header>
9
+ <h1>Contacts.app</h1>
10
+ <h3>A Demo Contacts Application</h3>
11
+ </header>
12
+ {% block content %}{% endblock %}
13
+ </main>
14
+ </body>
15
+ </html>