add unique thumbnails for all pages except contact
This commit is contained in:
parent
8c1eb2bc18
commit
9aa78273c4
|
@ -15,7 +15,6 @@
|
|||
{% if page.title %}
|
||||
<meta content="{{ page.title }}" property="og:title" />
|
||||
<meta content="article" property="og:type" />
|
||||
<meta content="{{ site.banner }}" property="og:image" />
|
||||
{% else %}
|
||||
<meta content="website" property="og:type" />
|
||||
{% endif %}
|
||||
|
@ -39,8 +38,10 @@
|
|||
{% endif %}
|
||||
|
||||
{% if page.thumbnail %}
|
||||
<meta content="{{ site.url }}{{ page.thumbnail }}" property="og:image" />
|
||||
{% endif %}
|
||||
<meta content="{{ site.url }}{{ page.thumbnail }}" property="og:image" />
|
||||
{% else %}
|
||||
<meta content="{{ site.banner }}" property="og:image" />
|
||||
{% endif %}
|
||||
|
||||
{% if page.categories %}
|
||||
{% for category in page.categories limit:1 %}
|
||||
|
|
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
|
||||
layout: company
|
||||
permalink: /company.html
|
||||
thumbnail: /assets/base/company-thumbnail.png
|
||||
---
|
||||
|
|
1
index.md
1
index.md
|
@ -2,4 +2,5 @@
|
|||
title: Home
|
||||
layout: landing
|
||||
permalink: /index.html
|
||||
thumbnail: /assets/base/landing-thumbnail.png
|
||||
---
|
||||
|
|
|
@ -2,4 +2,5 @@
|
|||
title: Roadmap
|
||||
layout: roadmap
|
||||
permalink: /roadmap.html
|
||||
thumbnail: /assets/base/roadmap-thumbnail.png
|
||||
---
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
title: Services
|
||||
layout: services
|
||||
layout: services
|
||||
permalink: /services.html
|
||||
---
|
||||
thumbnail: /assets/base/services-thumbnail.png
|
||||
---
|
||||
|
|
Loading…
Reference in New Issue