comparison tools/ssg101/templates/base.html @ 1200:b9514abc2a67

Initial commit of ssg101.
author Brian Neal <bgneal@gmail.com>
date Sat, 24 Jun 2023 16:06:51 -0500
parents
children
comparison
equal deleted inserted replaced
1199:45ce2c20a4e7 1200:b9514abc2a67
1 <!doctype html>
2 <html>
3 <head>
4 {% block head %}
5 <meta charset="utf-8">
6 <meta http-equiv="X-UA-Compatible" content="IE=edge">
7 <meta name="viewport" content="width=device-width, initial-scale=1">
8 <link href="//cdn.muicss.com/mui-0.10.3/css/mui.min.css" rel="stylesheet" type="text/css" />
9 <script src="//cdn.muicss.com/mui-0.10.3/js/mui.min.js"></script>
10 {% endblock %}
11 </head>
12 <body>
13 <div id="content">
14 {% block content %}
15 {% endblock %}
16 </div>
17 <div id="footer">
18 {% block footer %}
19 {% endblock %}
20 </div>
21 </body>
22 </html>