diff options
Diffstat (limited to '_layouts/default.html')
| -rw-r--r-- | _layouts/default.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..c8f24b1 --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,18 @@ +<!doctype html> +<html lang="en"> + <head> + {% include heading.html %} + <title>{{ page.title }} | Silicon Linux</title> + </head> + <body class="bg-dark text-white"> + <div class="wrapper"> + {% include navigator.html %} + <div class="container"> + {{ content }} + </div> + </div> + + {% include footing.html %} + {% include footer.html %} + </body> +</html>
\ No newline at end of file |
