diff options
Diffstat (limited to '_layouts/page.html')
| -rw-r--r-- | _layouts/page.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/_layouts/page.html b/_layouts/page.html new file mode 100644 index 0000000..b3d2fc4 --- /dev/null +++ b/_layouts/page.html | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | <!doctype html> | ||
| 2 | <html lang="en"> | ||
| 3 | |||
| 4 | <head> | ||
| 5 | <meta charset="utf-8"> | ||
| 6 | <meta name="theme-color" content="#000000"> | ||
| 7 | <meta name="description" content="{{ page.description }}"> | ||
| 8 | <title>{{ page.title }}</title> | ||
| 9 | </head> | ||
| 10 | |||
| 11 | <body> | ||
| 12 | |||
| 13 | {% include header.html %} | ||
| 14 | |||
| 15 | <h1>page</h1> | ||
| 16 | |||
| 17 | <article> | ||
| 18 | {{ content }} | ||
| 19 | </article> | ||
| 20 | |||
| 21 | {% include footer.html %} | ||
| 22 | |||
| 23 | </body> | ||
| 24 | |||
| 25 | </html> | ||
