geethareddy commited on
Commit
c84865d
·
verified ·
1 Parent(s): c8cb025

Create templates/base.html

Browse files
Files changed (1) hide show
  1. templates/base.html +14 -0
templates/base.html ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <link rel="stylesheet" href="static/css/styles.css">
7
+ <title>Restaurant App</title>
8
+ </head>
9
+ <body>
10
+ <div id="app">
11
+ {{ content }}
12
+ </div>
13
+ </body>
14
+ </html>