add unique thumbnails for all pages except contact
This commit is contained in:
parent
8c1eb2bc18
commit
9aa78273c4
|
@ -15,7 +15,6 @@
|
||||||
{% if page.title %}
|
{% if page.title %}
|
||||||
<meta content="{{ page.title }}" property="og:title" />
|
<meta content="{{ page.title }}" property="og:title" />
|
||||||
<meta content="article" property="og:type" />
|
<meta content="article" property="og:type" />
|
||||||
<meta content="{{ site.banner }}" property="og:image" />
|
|
||||||
{% else %}
|
{% else %}
|
||||||
<meta content="website" property="og:type" />
|
<meta content="website" property="og:type" />
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -40,6 +39,8 @@
|
||||||
|
|
||||||
{% if page.thumbnail %}
|
{% if page.thumbnail %}
|
||||||
<meta content="{{ site.url }}{{ page.thumbnail }}" property="og:image" />
|
<meta content="{{ site.url }}{{ page.thumbnail }}" property="og:image" />
|
||||||
|
{% else %}
|
||||||
|
<meta content="{{ site.banner }}" property="og:image" />
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if page.categories %}
|
{% if page.categories %}
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 360 KiB |
Binary file not shown.
After Width: | Height: | Size: 361 KiB |
Binary file not shown.
After Width: | Height: | Size: 453 KiB |
Binary file not shown.
After Width: | Height: | Size: 281 KiB |
|
@ -2,4 +2,5 @@
|
||||||
title: Company
|
title: Company
|
||||||
layout: company
|
layout: company
|
||||||
permalink: /company.html
|
permalink: /company.html
|
||||||
|
thumbnail: /assets/base/company-thumbnail.png
|
||||||
---
|
---
|
||||||
|
|
1
index.md
1
index.md
|
@ -2,4 +2,5 @@
|
||||||
title: Home
|
title: Home
|
||||||
layout: landing
|
layout: landing
|
||||||
permalink: /index.html
|
permalink: /index.html
|
||||||
|
thumbnail: /assets/base/landing-thumbnail.png
|
||||||
---
|
---
|
||||||
|
|
|
@ -2,4 +2,5 @@
|
||||||
title: Roadmap
|
title: Roadmap
|
||||||
layout: roadmap
|
layout: roadmap
|
||||||
permalink: /roadmap.html
|
permalink: /roadmap.html
|
||||||
|
thumbnail: /assets/base/roadmap-thumbnail.png
|
||||||
---
|
---
|
||||||
|
|
|
@ -2,4 +2,5 @@
|
||||||
title: Services
|
title: Services
|
||||||
layout: services
|
layout: services
|
||||||
permalink: /services.html
|
permalink: /services.html
|
||||||
|
thumbnail: /assets/base/services-thumbnail.png
|
||||||
---
|
---
|
Loading…
Reference in New Issue