diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2019-02-17 21:53:36 +0100 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2019-02-17 21:53:36 +0100 |
| commit | 8e9ef5ba62b8bee028428384ad5666e245eb854c (patch) | |
| tree | b382c5b40f122b2a152da2226006abab34abe105 /_layouts | |
| parent | ad974810d43e1d5f70bca269665c25230e6a3221 (diff) | |
| download | mitjafelicijan.com-8e9ef5ba62b8bee028428384ad5666e245eb854c.tar.gz | |
content update
Diffstat (limited to '_layouts')
| -rw-r--r-- | _layouts/index.html | 59 | ||||
| -rw-r--r-- | _layouts/page.html | 50 | ||||
| -rw-r--r-- | _layouts/post.html | 88 |
3 files changed, 0 insertions, 197 deletions
diff --git a/_layouts/index.html b/_layouts/index.html deleted file mode 100644 index af720a9..0000000 --- a/_layouts/index.html +++ /dev/null | |||
| @@ -1,59 +0,0 @@ | |||
| 1 | <!DOCTYPE html> | ||
| 2 | <html lang="en"> | ||
| 3 | <head> | ||
| 4 | <meta charset="utf-8" /> | ||
| 5 | |||
| 6 | <meta http-equiv="x-ua-compatible" content="ie=edge" /> | ||
| 7 | <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=5" /> | ||
| 8 | |||
| 9 | <meta name="theme-color" content="{{ site.theme_color }}" /> | ||
| 10 | <meta name="author" content="{{ site.author }}" /> | ||
| 11 | <meta name="description" content="{{ site.description }}" /> | ||
| 12 | |||
| 13 | <meta name="google-site-verification" content="EwUGW1WlCkRIQuyQ9AE1-bLitWthw-eVMZFTAMZVZaA" /> | ||
| 14 | |||
| 15 | <title>{{ page.title }}</title> | ||
| 16 | |||
| 17 | <link rel="icon" type="image/gif" href="/{{ site.avatar }}?ver={{ site.cache_version }}" /> | ||
| 18 | |||
| 19 | <meta name="og:url" content="{{ site.domain }}" /> | ||
| 20 | <meta name="og:type" content="website" /> | ||
| 21 | <meta name="og:title" content="{{ site.title }}" /> | ||
| 22 | <meta name="og:description" content="{{ page.description }}" /> | ||
| 23 | <meta name="og:image" content="{{ site.domain }}{{ site.avatar }}?ver={{ site.cache_version }}" /> | ||
| 24 | |||
| 25 | <meta name="twitter:card" content="summary" /> | ||
| 26 | <meta name="twitter:site" content="{{ site.twitter }}" /> | ||
| 27 | <meta name="twitter:title" content="{{ site.title }}" /> | ||
| 28 | <meta name="twitter:description" content="{{ site.description }}" /> | ||
| 29 | <meta name="twitter:image" content="{{ site.domain }}{{ site.avatar }}?ver={{ site.cache_version }}" /> | ||
| 30 | |||
| 31 | <link rel="manifest" href="/assets/manifest.json?ver={{ site.cache_version }}" /> | ||
| 32 | |||
| 33 | <style> | ||
| 34 | {% include site.min.css %} | ||
| 35 | {% include highlight.min.css %} | ||
| 36 | </style> | ||
| 37 | </head> | ||
| 38 | |||
| 39 | <body> | ||
| 40 | {% include header.html %} | ||
| 41 | |||
| 42 | <main> | ||
| 43 | {{ content }} | ||
| 44 | |||
| 45 | <ul> | ||
| 46 | {% for post in site.posts %} | ||
| 47 | <li> | ||
| 48 | <time datetime="{{ post.date | date: '%Y-%m-%d' }}">{{ post.date | date: '%A, %B %-d, %Y' }}</time> | ||
| 49 | <div> | ||
| 50 | <a href="{{ post.url }}">{{ post.title }}</a> | ||
| 51 | </div> | ||
| 52 | </li> | ||
| 53 | {% endfor %} | ||
| 54 | </ul> | ||
| 55 | </main> | ||
| 56 | |||
| 57 | {% include footer.html %} | ||
| 58 | </body> | ||
| 59 | </html> | ||
diff --git a/_layouts/page.html b/_layouts/page.html deleted file mode 100644 index 68de599..0000000 --- a/_layouts/page.html +++ /dev/null | |||
| @@ -1,50 +0,0 @@ | |||
| 1 | <!DOCTYPE html> | ||
| 2 | <html lang="en"> | ||
| 3 | <head> | ||
| 4 | <meta charset="utf-8" /> | ||
| 5 | |||
| 6 | <meta http-equiv="x-ua-compatible" content="ie=edge" /> | ||
| 7 | <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=5" /> | ||
| 8 | |||
| 9 | <meta name="theme-color" content="{{ site.theme_color }}" /> | ||
| 10 | <meta name="author" content="{{ site.author }}" /> | ||
| 11 | <meta name="description" content="{{ page.description }}" /> | ||
| 12 | |||
| 13 | <meta name="google-site-verification" content="EwUGW1WlCkRIQuyQ9AE1-bLitWthw-eVMZFTAMZVZaA" /> | ||
| 14 | |||
| 15 | <title>{{ page.title }}</title> | ||
| 16 | |||
| 17 | <link rel="icon" type="image/gif" href="/{{ site.avatar }}?ver={{ site.cache_version }}" /> | ||
| 18 | |||
| 19 | <meta name="og:url" content="{{ site.domain }}{{ page.slug }}" /> | ||
| 20 | <meta name="og:type" content="website" /> | ||
| 21 | <meta name="og:title" content="{{ page.title }}" /> | ||
| 22 | <meta name="og:description" content="{{ page.description }}" /> | ||
| 23 | <meta name="og:image" content="{{ site.domain }}{{ site.avatar }}?ver={{ site.cache_version }}" /> | ||
| 24 | |||
| 25 | <meta name="twitter:card" content="summary" /> | ||
| 26 | <meta name="twitter:site" content="{{ site.twitter }}" /> | ||
| 27 | <meta name="twitter:title" content="{{ page.title }}" /> | ||
| 28 | <meta name="twitter:description" content="{{ page.description }}" /> | ||
| 29 | <meta name="twitter:image" content="{{ site.domain }}{{ site.avatar }}?ver={{ site.cache_version }}" /> | ||
| 30 | |||
| 31 | <link rel="manifest" href="/assets/manifest.json?ver={{ site.cache_version }}" /> | ||
| 32 | |||
| 33 | <style> | ||
| 34 | {% include site.min.css %} | ||
| 35 | {% include highlight.min.css %} | ||
| 36 | </style> | ||
| 37 | </head> | ||
| 38 | |||
| 39 | <body> | ||
| 40 | {% include header.html %} | ||
| 41 | |||
| 42 | <article> | ||
| 43 | <h1>{{ page.title }}</h1> | ||
| 44 | |||
| 45 | {{ content }} | ||
| 46 | </article> | ||
| 47 | |||
| 48 | {% include footer.html %} | ||
| 49 | </body> | ||
| 50 | </html> | ||
diff --git a/_layouts/post.html b/_layouts/post.html deleted file mode 100644 index d0d1319..0000000 --- a/_layouts/post.html +++ /dev/null | |||
| @@ -1,88 +0,0 @@ | |||
| 1 | <!DOCTYPE html> | ||
| 2 | <html lang="en"> | ||
| 3 | |||
| 4 | <head> | ||
| 5 | <meta charset="utf-8" /> | ||
| 6 | |||
| 7 | <meta http-equiv="x-ua-compatible" content="ie=edge" /> | ||
| 8 | <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=5" /> | ||
| 9 | |||
| 10 | <meta name="theme-color" content="{{ site.theme_color }}" /> | ||
| 11 | <meta name="author" content="{{ site.author }}" /> | ||
| 12 | <meta name="description" content="{{ page.description }}" /> | ||
| 13 | |||
| 14 | <meta name="google-site-verification" content="EwUGW1WlCkRIQuyQ9AE1-bLitWthw-eVMZFTAMZVZaA" /> | ||
| 15 | |||
| 16 | <title>{{ page.title }}</title> | ||
| 17 | |||
| 18 | <link rel="icon" type="image/gif" href="/{{ site.avatar }}?ver={{ site.cache_version }}" /> | ||
| 19 | |||
| 20 | <meta name="og:url" content="{{ site.domain }}{{ page.slug }}" /> | ||
| 21 | <meta name="og:type" content="website" /> | ||
| 22 | <meta name="og:title" content="{{ page.title }}" /> | ||
| 23 | <meta name="og:description" content="{{ page.description }}" /> | ||
| 24 | <meta name="og:image" content="{{ site.domain }}{{ site.avatar }}?ver={{ site.cache_version }}" /> | ||
| 25 | |||
| 26 | <meta name="twitter:card" content="summary" /> | ||
| 27 | <meta name="twitter:site" content="{{ site.twitter }}" /> | ||
| 28 | <meta name="twitter:title" content="{{ page.title }}" /> | ||
| 29 | <meta name="twitter:description" content="{{ page.description }}" /> | ||
| 30 | <meta name="twitter:image" content="{{ site.domain }}{{ site.avatar }}?ver={{ site.cache_version }}" /> | ||
| 31 | |||
| 32 | <link rel="manifest" href="/assets/manifest.json?ver={{ site.cache_version }}" /> | ||
| 33 | |||
| 34 | <style> | ||
| 35 | {% include site.min.css %} | ||
| 36 | {% include highlight.min.css %} | ||
| 37 | </style> | ||
| 38 | </head> | ||
| 39 | |||
| 40 | <body> | ||
| 41 | {% include header.html %} | ||
| 42 | |||
| 43 | <article> | ||
| 44 | |||
| 45 | <h1>{{ page.title }}</h1> | ||
| 46 | |||
| 47 | <time datetime="{{ page.date | date: '%Y-%m-%d' }}">{{ page.date | date: '%A, %B %-d, %Y' }}, by {{ site.author }}</time> | ||
| 48 | |||
| 49 | {{ content }} | ||
| 50 | |||
| 51 | </article> | ||
| 52 | |||
| 53 | {% include footer.html %} | ||
| 54 | |||
| 55 | <!-- Linked data - Article --> | ||
| 56 | <script type="application/ld+json"> | ||
| 57 | { | ||
| 58 | "@context": "http://schema.org", | ||
| 59 | "@type": "NewsArticle", | ||
| 60 | "mainEntityOfPage": { | ||
| 61 | "@type": "WebPage", | ||
| 62 | "@id": "{{ site.domain }}{{ page.slug }}" | ||
| 63 | }, | ||
| 64 | |||
| 65 | "image": [ | ||
| 66 | "{{ site.domain }}{{ site.avatar }}?ver={{ site.cache_version }}" | ||
| 67 | ], | ||
| 68 | "datePublished": "{{ page.date | date_to_xmlschema }}", | ||
| 69 | "dateModified": "{{ page.date | date_to_xmlschema }}", | ||
| 70 | "author": { | ||
| 71 | "@type": "Person", | ||
| 72 | "name": "Mitja Felicijan" | ||
| 73 | }, | ||
| 74 | "publisher": { | ||
| 75 | "@type": "Organization", | ||
| 76 | "name": "Mitja Felicijan", | ||
| 77 | "logo": { | ||
| 78 | "@type": "ImageObject", | ||
| 79 | "url": "{{ site.domain }}{{ site.avatar }}?ver={{ site.cache_version }}" | ||
| 80 | } | ||
| 81 | }, | ||
| 82 | "headline": "{{ page.title }}", | ||
| 83 | "description": "{{ page.description }}" | ||
| 84 | } | ||
| 85 | </script> | ||
| 86 | </body> | ||
| 87 | |||
| 88 | </html> \ No newline at end of file | ||
