diff options
| -rw-r--r-- | .jekyll-metadata | bin | 24971 -> 25078 bytes | |||
| -rw-r--r-- | _config.yml | 6 | ||||
| -rw-r--r-- | _layouts/index.html | 10 | ||||
| -rw-r--r-- | _layouts/page.html | 10 | ||||
| -rw-r--r-- | _layouts/post.html | 12 |
5 files changed, 30 insertions, 8 deletions
diff --git a/.jekyll-metadata b/.jekyll-metadata index 9c403b2..becf262 100644 --- a/.jekyll-metadata +++ b/.jekyll-metadata | |||
| Binary files differ | |||
diff --git a/_config.yml b/_config.yml index c8e6645..3fc8ed6 100644 --- a/_config.yml +++ b/_config.yml | |||
| @@ -5,10 +5,12 @@ exclude: | |||
| 5 | - Makefile | 5 | - Makefile |
| 6 | - notes.md | 6 | - notes.md |
| 7 | 7 | ||
| 8 | permalink: /:title | ||
| 9 | |||
| 8 | author: Mitja Felicijan | 10 | author: Mitja Felicijan |
| 9 | description: Embedded systems developer and fanatical fan of science fiction | 11 | description: Embedded systems developer and fanatical fan of science fiction |
| 10 | 12 | twitter: "@mitjafelicijan" | |
| 11 | permalink: /:title | 13 | avatar: assets/avatar.gif |
| 12 | 14 | ||
| 13 | kramdown: | 15 | kramdown: |
| 14 | auto_ids: true | 16 | auto_ids: true |
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> |
