diff options
| author | Dennis Brentjes <d.brentjes@gmail.com> | 2014-04-27 16:20:43 +0200 |
|---|---|---|
| committer | Dennis Brentjes <d.brentjes@gmail.com> | 2014-04-27 16:20:43 +0200 |
| commit | 92f886b9a9f53a94e66ef335b9dcb3a248324c1b (patch) | |
| tree | f6f2c83b34d4009b478bd0e697942f7a8ad7a1da /_layouts/default.html | |
| download | brentj.es-92f886b9a9f53a94e66ef335b9dcb3a248324c1b.tar.gz brentj.es-92f886b9a9f53a94e66ef335b9dcb3a248324c1b.tar.bz2 brentj.es-92f886b9a9f53a94e66ef335b9dcb3a248324c1b.zip | |
Initial version of brentj.es
Diffstat (limited to '_layouts/default.html')
| -rw-r--r-- | _layouts/default.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..ace44ce --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,28 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8"> + <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> + <title>{{ page.title }}</title> + <meta name="viewport" content="width=device-width"> + + <!-- syntax highlighting CSS --> + <link rel="stylesheet" href="/css/syntax.css"> + + <!-- Custom CSS --> + <link rel="stylesheet" href="/css/main.css"> + + </head> + <body> + + <div class="site"> + {% include header.html %} + + {{ content }} + + {% include footer.html %} + + </div> + + </body> +</html> |
