diff options
Diffstat (limited to '_layouts')
| -rw-r--r-- | _layouts/index.html | 10 | ||||
| -rw-r--r-- | _layouts/page.html | 10 | ||||
| -rw-r--r-- | _layouts/post.html | 12 |
3 files changed, 26 insertions, 6 deletions
diff --git a/_layouts/index.html b/_layouts/index.html index 371eb20..d83a122 100644 --- a/_layouts/index.html +++ b/_layouts/index.html | |||
| @@ -17,13 +17,19 @@ | |||
| 17 | <link rel="stylesheet" href="/assets/highlight.css"> | 17 | <link rel="stylesheet" href="/assets/highlight.css"> |
| 18 | <link rel="stylesheet" href="/assets/site.css"> | 18 | <link rel="stylesheet" href="/assets/site.css"> |
| 19 | 19 | ||
| 20 | <link rel="icon" type="image/gif" href="/assets/avatar.gif"> | 20 | <link rel="icon" type="image/gif" href="/{{ site.avatar }}"> |
| 21 | 21 | ||
| 22 | <meta name="og:url" content="https://mitjafelicijan.com"> | 22 | <meta name="og:url" content="https://mitjafelicijan.com"> |
| 23 | <meta name="og:type" content="website"> | 23 | <meta name="og:type" content="website"> |
| 24 | <meta name="og:title" content="{{ site.title }}"> | 24 | <meta name="og:title" content="{{ site.title }}"> |
| 25 | <meta name="og:description" content="{{ page.description }}"> | 25 | <meta name="og:description" content="{{ page.description }}"> |
| 26 | <meta name="og:image" content="https://mitjafelicijan.com/assets/avatar.gif"> | 26 | <meta name="og:image" content="https://mitjafelicijan.com/{{ site.avatar }}"> |
| 27 | |||
| 28 | <meta name="twitter:card" content="summary"> | ||
| 29 | <meta name="twitter:site" content="{{ site.twitter }}"> | ||
| 30 | <meta name="twitter:title" content="{{ site.title }}"> | ||
| 31 | <meta name="twitter:description" content="{{ site.description }}"> | ||
| 32 | <meta name="twitter:image" content="https://mitjafelicijan.com/{{ site.avatar }}"> | ||
| 27 | 33 | ||
| 28 | </head> | 34 | </head> |
| 29 | 35 | ||
diff --git a/_layouts/page.html b/_layouts/page.html index f5cb3ed..6e52ab6 100644 --- a/_layouts/page.html +++ b/_layouts/page.html | |||
| @@ -17,13 +17,19 @@ | |||
| 17 | <link rel="stylesheet" href="/assets/highlight.css"> | 17 | <link rel="stylesheet" href="/assets/highlight.css"> |
| 18 | <link rel="stylesheet" href="/assets/site.css"> | 18 | <link rel="stylesheet" href="/assets/site.css"> |
| 19 | 19 | ||
| 20 | <link rel="icon" type="image/gif" href="/assets/avatar.gif"> | 20 | <link rel="icon" type="image/gif" href="/{{ site.avatar }}"> |
| 21 | 21 | ||
| 22 | <meta name="og:url" content="https://mitjafelicijan.com/{{ page.slug }}"> | 22 | <meta name="og:url" content="https://mitjafelicijan.com/{{ page.slug }}"> |
| 23 | <meta name="og:type" content="website"> | 23 | <meta name="og:type" content="website"> |
| 24 | <meta name="og:title" content="{{ page.title }}"> | 24 | <meta name="og:title" content="{{ page.title }}"> |
| 25 | <meta name="og:description" content="{{ page.description }}"> | 25 | <meta name="og:description" content="{{ page.description }}"> |
| 26 | <meta name="og:image" content="https://mitjafelicijan.com/assets/avatar.gif"> | 26 | <meta name="og:image" content="https://mitjafelicijan.com/{{ site.avatar }}"> |
| 27 | |||
| 28 | <meta name="twitter:card" content="summary"> | ||
| 29 | <meta name="twitter:site" content="{{ site.twitter }}"> | ||
| 30 | <meta name="twitter:title" content="{{ page.title }}"> | ||
| 31 | <meta name="twitter:description" content="{{ page.description }}"> | ||
| 32 | <meta name="twitter:image" content="https://mitjafelicijan.com/{{ site.avatar }}"> | ||
| 27 | 33 | ||
| 28 | </head> | 34 | </head> |
| 29 | 35 | ||
diff --git a/_layouts/post.html b/_layouts/post.html index 451d3a6..e158aaf 100644 --- a/_layouts/post.html +++ b/_layouts/post.html | |||
| @@ -17,18 +17,26 @@ | |||
| 17 | <link rel="stylesheet" href="/assets/highlight.css"> | 17 | <link rel="stylesheet" href="/assets/highlight.css"> |
| 18 | <link rel="stylesheet" href="/assets/site.css"> | 18 | <link rel="stylesheet" href="/assets/site.css"> |
| 19 | 19 | ||
| 20 | <link rel="icon" type="image/gif" href="/assets/avatar.gif"> | 20 | <link rel="icon" type="image/gif" href="/{{ site.avatar }}"> |
| 21 | 21 | ||
| 22 | <meta name="og:url" content="https://mitjafelicijan.com/{{ page.slug }}"> | 22 | <meta name="og:url" content="https://mitjafelicijan.com/{{ page.slug }}"> |
| 23 | <meta name="og:type" content="website"> | 23 | <meta name="og:type" content="website"> |
| 24 | <meta name="og:title" content="{{ page.title }}"> | 24 | <meta name="og:title" content="{{ page.title }}"> |
| 25 | <meta name="og:description" content="{{ page.description }}"> | 25 | <meta name="og:description" content="{{ page.description }}"> |
| 26 | <meta name="og:image" content="https://mitjafelicijan.com/assets/avatar.gif"> | 26 | <meta name="og:image" content="https://mitjafelicijan.com/{{ site.avatar }}"> |
| 27 | |||
| 28 | <meta name="twitter:card" content="summary"> | ||
| 29 | <meta name="twitter:site" content="{{ site.twitter }}"> | ||
| 30 | <meta name="twitter:title" content="{{ page.title }}"> | ||
| 31 | <meta name="twitter:description" content="{{ page.description }}"> | ||
| 32 | <meta name="twitter:image" content="https://mitjafelicijan.com/{{ site.avatar }}"> | ||
| 27 | 33 | ||
| 28 | </head> | 34 | </head> |
| 29 | 35 | ||
| 30 | <body> | 36 | <body> |
| 31 | 37 | ||
| 38 | {{ site.icon }} | ||
| 39 | |||
| 32 | {% include header.html %} | 40 | {% include header.html %} |
| 33 | 41 | ||
| 34 | <article> | 42 | <article> |
