Collections
Organisation Profiles
Registry of company and institution profiles. Content entries reference organisations via the `organizations` field.
The organizations collection holds profiles for companies, agencies, institutions, and other non-human entities that publish or contribute content on the platform. It is a direct counterpart to the people collection — every field, behaviour, and profile page feature is identical.
Files live in content/organizations/ and are named after the organisation using lowercase, hyphenated slugs (e.g. acme-corp.md). Profile images go in content/organizations/images/.
How content references an organisation
Content collections (articles, cards, press-releases) use an organizations field alongside the existing authors field:
---
title: 'My Article'
authors: []
---
You may populate authors, organizations, or both. At least one entry across the two fields is expected.
Frontmatter Fields
| Field | Type | Required | Notes |
|---|---|---|---|
entity | 'organization' | No | Always 'organization' for this collection. The default is set automatically. |
name | string | Yes | Full display name of the organisation, e.g. 'Acme Corporation'. |
role | string | Yes | Descriptor shown on listing cards, e.g. 'Technology Partner', 'Media Agency'. |
shortBio | string | Yes | One-sentence summary shown in bylines and listing cards. |
bio | string | No | Extended description shown on the full profile page. Markdown is supported. |
location | string | No | Headquarters city and country, e.g. 'Amsterdam, Netherlands'. |
email | string | No | Contact email. Not displayed publicly; used for editorial contact. |
photo | string | No | Bare filename from content/organizations/images/, e.g. 'acme-corp.png'. |
photoAlt | string | No | Alt text for the logo or photo. |
social.linkedin | URL | No | Full LinkedIn company page URL. |
social.x | URL | No | Full X (Twitter) profile URL. |
social.github | URL | No | Full GitHub organisation URL. |
social.website | URL | No | Organisation website. |
expertise | string[] | No | Areas the organisation specialises in, e.g. ['B2B SaaS', 'Fintech']. |
hobbies | string[] | No | Optional secondary interests shown on the profile page. |
isTeam | boolean | No | true to show on the /team page. Default true; set false for external orgs. |
isAuthor | boolean | No | true allows this entry to be referenced as an author. Default true. |
featured | boolean | No | true highlights this organisation in listing grids. Default true. |
order | number | No | Sort order on listing pages. Lower = shown first. Default 999. |
Template
---
name: ''
role: ''
shortBio: ''
bio: ''
location: ''
email: ''
photo: 'org-slug.png'
photoAlt: 'Logo of [Organisation Name]'
social:
linkedin: ''
x: ''
github: ''
website: ''
expertise: []
isTeam: false
isAuthor: true
featured: true
order: 999
---
Extended description written in Markdown. Appears on the organisation's profile page at `/organizations/[slug]`.
Complete Sample
---
name: 'Acme Publishing Group'
role: 'Media & Content Partner'
shortBio: 'Acme Publishing Group produces data-driven editorial content for B2B technology and finance audiences across Europe.'
bio: |
Acme Publishing Group is a Berlin-based content studio specialising in long-form editorial, sponsored research, and thought-leadership programmes for enterprise technology and financial services brands.
Founded in 2015, Acme has produced content for more than 200 clients across DACH, Benelux, and the UK. The group operates as an independent editorial unit, maintaining a strict separation between commercial and editorial decisions.
location: 'Berlin, Germany'
email: 'editorial@acme-publishing.example'
photo: 'acme-publishing-group.png'
photoAlt: 'Acme Publishing Group logo'
social:
linkedin: 'https://www.linkedin.com/company/acme-publishing'
website: 'https://acme-publishing.example'
expertise:
- B2B Technology
- Financial Services
- Thought Leadership
- Sponsored Research
isTeam: false
isAuthor: true
featured: true
order: 999
---
Acme Publishing Group contributes research-backed articles and sponsored editorial to LinkPress on behalf of enterprise technology and financial services clients.