add unique thumbnails for all pages except contact

This commit is contained in:
Anton Livaja 2025-03-18 18:26:42 -07:00
parent 8c1eb2bc18
commit 9aa78273c4
Signed by: anton
GPG Key ID: 44A86CFF1FDF0E85
9 changed files with 10 additions and 5 deletions

View File

@ -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

View File

@ -2,4 +2,5 @@
title: Company
layout: company
permalink: /company.html
thumbnail: /assets/base/company-thumbnail.png
---

View File

@ -2,4 +2,5 @@
title: Home
layout: landing
permalink: /index.html
thumbnail: /assets/base/landing-thumbnail.png
---

View File

@ -2,4 +2,5 @@
title: Roadmap
layout: roadmap
permalink: /roadmap.html
thumbnail: /assets/base/roadmap-thumbnail.png
---

View File

@ -1,5 +1,6 @@
---
title: Services
layout: services
layout: services
permalink: /services.html
---
thumbnail: /assets/base/services-thumbnail.png
---