diff options
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..c74aceb --- /dev/null +++ b/templates/base.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"/> + <title>silas</title> + <link rel="stylesheet" href="/style.css"/> + </head> + <body> + <section class="section"> + <div class="container"> + {% block content %} {% endblock %} + </div> + </section> + </body> +</html> |