Spaces:
Runtime error
Runtime error
Vinay Jose
commited on
Create layout.html
Browse files- 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>
|