diff options
Diffstat (limited to '_layouts')
| -rw-r--r-- | _layouts/default.html | 12 | ||||
| -rw-r--r-- | _layouts/post.html | 7 |
2 files changed, 19 insertions, 0 deletions
diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..23a7213 --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="utf-8"> + <title>{{ page.title }}</title> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta name="author" content="Oskari Timperi"> +</head> +<body> +{{ content }} +</body> +</html> diff --git a/_layouts/post.html b/_layouts/post.html new file mode 100644 index 0000000..61bed2a --- /dev/null +++ b/_layouts/post.html @@ -0,0 +1,7 @@ +--- +layout: default +--- + +<div id="post"> + {{ content }} +</div> |
