diff options
Diffstat (limited to '_layouts')
-rw-r--r-- | _layouts/index.liquid | 14 | ||||
-rw-r--r-- | _layouts/page.liquid | 14 | ||||
-rw-r--r-- | _layouts/post.liquid | 14 |
3 files changed, 42 insertions, 0 deletions
diff --git a/_layouts/index.liquid b/_layouts/index.liquid new file mode 100644 index 0000000..26e55c6 --- /dev/null +++ b/_layouts/index.liquid @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8"> + <title>{{ page.title }}</title> + <link rel="stylesheet" href="bulma.css"> + </head> + <body> + <div> + <h2 class="title">{{ page.title }}</h2> + {{ page.content }} + </div> + </body> +</html> diff --git a/_layouts/page.liquid b/_layouts/page.liquid new file mode 100644 index 0000000..26e55c6 --- /dev/null +++ b/_layouts/page.liquid @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8"> + <title>{{ page.title }}</title> + <link rel="stylesheet" href="bulma.css"> + </head> + <body> + <div> + <h2 class="title">{{ page.title }}</h2> + {{ page.content }} + </div> + </body> +</html> diff --git a/_layouts/post.liquid b/_layouts/post.liquid new file mode 100644 index 0000000..26e55c6 --- /dev/null +++ b/_layouts/post.liquid @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8"> + <title>{{ page.title }}</title> + <link rel="stylesheet" href="bulma.css"> + </head> + <body> + <div> + <h2 class="title">{{ page.title }}</h2> + {{ page.content }} + </div> + </body> +</html> |