Pull out base template
[txt.house] / txt_house / templates / base.html
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"/>
6     <title>txt.house</title>
7   </head>
8
9   <body>
10     {% block body %}{% endblock %}
11   </body>
12 </html>