diff options
Diffstat (limited to '_layouts/index.html')
| -rw-r--r-- | _layouts/index.html | 120 |
1 files changed, 57 insertions, 63 deletions
diff --git a/_layouts/index.html b/_layouts/index.html index 0d251ce..af720a9 100644 --- a/_layouts/index.html +++ b/_layouts/index.html | |||
| @@ -1,65 +1,59 @@ | |||
| 1 | <!doctype html> | 1 | <!DOCTYPE html> |
| 2 | <html lang="en"> | 2 | <html lang="en"> |
| 3 | 3 | <head> | |
| 4 | <head> | 4 | <meta charset="utf-8" /> |
| 5 | 5 | ||
| 6 | <meta charset="utf-8"> | 6 | <meta http-equiv="x-ua-compatible" content="ie=edge" /> |
| 7 | 7 | <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=5" /> | |
| 8 | <meta http-equiv="x-ua-compatible" content="ie=edge"> | 8 | |
| 9 | <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=5"> | 9 | <meta name="theme-color" content="{{ site.theme_color }}" /> |
| 10 | 10 | <meta name="author" content="{{ site.author }}" /> | |
| 11 | <meta name="theme-color" content="{{ site.theme_color }}"> | 11 | <meta name="description" content="{{ site.description }}" /> |
| 12 | <meta name="author" content="{{ site.author }}"> | 12 | |
| 13 | <meta name="description" content="{{ site.description }}"> | 13 | <meta name="google-site-verification" content="EwUGW1WlCkRIQuyQ9AE1-bLitWthw-eVMZFTAMZVZaA" /> |
| 14 | 14 | ||
| 15 | <meta name="google-site-verification" content="EwUGW1WlCkRIQuyQ9AE1-bLitWthw-eVMZFTAMZVZaA"> | 15 | <title>{{ page.title }}</title> |
| 16 | 16 | ||
| 17 | <title>{{ page.title }}</title> | 17 | <link rel="icon" type="image/gif" href="/{{ site.avatar }}?ver={{ site.cache_version }}" /> |
| 18 | 18 | ||
| 19 | <link rel="icon" type="image/gif" href="/{{ site.avatar }}?ver={{ site.cache_version }}"> | 19 | <meta name="og:url" content="{{ site.domain }}" /> |
| 20 | 20 | <meta name="og:type" content="website" /> | |
| 21 | <meta name="og:url" content="{{ site.domain }}"> | 21 | <meta name="og:title" content="{{ site.title }}" /> |
| 22 | <meta name="og:type" content="website"> | 22 | <meta name="og:description" content="{{ page.description }}" /> |
| 23 | <meta name="og:title" content="{{ site.title }}"> | 23 | <meta name="og:image" content="{{ site.domain }}{{ site.avatar }}?ver={{ site.cache_version }}" /> |
| 24 | <meta name="og:description" content="{{ page.description }}"> | 24 | |
| 25 | <meta name="og:image" content="{{ site.domain }}{{ site.avatar }}?ver={{ site.cache_version }}"> | 25 | <meta name="twitter:card" content="summary" /> |
| 26 | 26 | <meta name="twitter:site" content="{{ site.twitter }}" /> | |
| 27 | <meta name="twitter:card" content="summary"> | 27 | <meta name="twitter:title" content="{{ site.title }}" /> |
| 28 | <meta name="twitter:site" content="{{ site.twitter }}"> | 28 | <meta name="twitter:description" content="{{ site.description }}" /> |
| 29 | <meta name="twitter:title" content="{{ site.title }}"> | 29 | <meta name="twitter:image" content="{{ site.domain }}{{ site.avatar }}?ver={{ site.cache_version }}" /> |
| 30 | <meta name="twitter:description" content="{{ site.description }}"> | 30 | |
| 31 | <meta name="twitter:image" content="{{ site.domain }}{{ site.avatar }}?ver={{ site.cache_version }}"> | 31 | <link rel="manifest" href="/assets/manifest.json?ver={{ site.cache_version }}" /> |
| 32 | 32 | ||
| 33 | <link rel="manifest" href="/assets/manifest.json?ver={{ site.cache_version }}"> | 33 | <style> |
| 34 | 34 | {% include site.min.css %} | |
| 35 | <style> | 35 | {% include highlight.min.css %} |
| 36 | {% include site.min.css %} | 36 | </style> |
| 37 | {% include highlight.min.css %} | 37 | </head> |
| 38 | </style> | 38 | |
| 39 | 39 | <body> | |
| 40 | </head> | 40 | {% include header.html %} |
| 41 | 41 | ||
| 42 | <body> | 42 | <main> |
| 43 | 43 | {{ content }} | |
| 44 | {% include header.html %} | 44 | |
| 45 | 45 | <ul> | |
| 46 | <main> | 46 | {% for post in site.posts %} |
| 47 | 47 | <li> | |
| 48 | {{ content }} | 48 | <time datetime="{{ post.date | date: '%Y-%m-%d' }}">{{ post.date | date: '%A, %B %-d, %Y' }}</time> |
| 49 | 49 | <div> | |
| 50 | <ul> | 50 | <a href="{{ post.url }}">{{ post.title }}</a> |
| 51 | {% for post in site.posts %} | 51 | </div> |
| 52 | <li> | 52 | </li> |
| 53 | <time datetime="{{ post.date | date: '%Y-%m-%d' }}">{{ post.date | date: '%A, %B %-d, %Y' }}</time> | 53 | {% endfor %} |
| 54 | <div><a href="{{ post.url }}">{{ post.title }}</a></div> | 54 | </ul> |
| 55 | </li> | 55 | </main> |
| 56 | {% endfor %} | 56 | |
| 57 | </ul> | 57 | {% include footer.html %} |
| 58 | 58 | </body> | |
| 59 | </main> | ||
| 60 | |||
| 61 | {% include footer.html %} | ||
| 62 | |||
| 63 | </body> | ||
| 64 | |||
| 65 | </html> | 59 | </html> |
