diff options
Diffstat (limited to '_layouts/index.html')
| -rw-r--r-- | _layouts/index.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/_layouts/index.html b/_layouts/index.html new file mode 100644 index 0000000..872cd2e --- /dev/null +++ b/_layouts/index.html | |||
| @@ -0,0 +1,34 @@ | |||
| 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 | |||
| 10 | <style>{% include site.css %}</style> | ||
| 11 | |||
| 12 | </head> | ||
| 13 | |||
| 14 | <body> | ||
| 15 | |||
| 16 | {% include header.html %} | ||
| 17 | |||
| 18 | <main> | ||
| 19 | |||
| 20 | <ul> | ||
| 21 | {% for post in site.posts %} | ||
| 22 | <li> | ||
| 23 | {{ post.date | date: "%m/%d/%Y" }} | ||
| 24 | <a href="{{ post.url }}">{{ post.title }}</a> | ||
| 25 | </li> | ||
| 26 | {% endfor %} | ||
| 27 | </ul> | ||
| 28 | </main> | ||
| 29 | |||
| 30 | {% include footer.html %} | ||
| 31 | |||
| 32 | </body> | ||
| 33 | |||
| 34 | </html> | ||
