Mercurial > public > sg101
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tools/ssg101/templates/base.html Sat Jun 24 16:06:51 2023 -0500 @@ -0,0 +1,22 @@ +<!doctype html> +<html> + <head> + {% block head %} + <meta charset="utf-8"> + <meta http-equiv="X-UA-Compatible" content="IE=edge"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <link href="//cdn.muicss.com/mui-0.10.3/css/mui.min.css" rel="stylesheet" type="text/css" /> + <script src="//cdn.muicss.com/mui-0.10.3/js/mui.min.js"></script> + {% endblock %} + </head> + <body> + <div id="content"> + {% block content %} + {% endblock %} + </div> + <div id="footer"> + {% block footer %} + {% endblock %} + </div> + </body> +</html>