Skip to content
LinkPress™

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

FieldTypeRequiredNotes
entity'organization'NoAlways 'organization' for this collection. The default is set automatically.
namestringYesFull display name of the organisation, e.g. 'Acme Corporation'.
rolestringYesDescriptor shown on listing cards, e.g. 'Technology Partner', 'Media Agency'.
shortBiostringYesOne-sentence summary shown in bylines and listing cards.
biostringNoExtended description shown on the full profile page. Markdown is supported.
locationstringNoHeadquarters city and country, e.g. 'Amsterdam, Netherlands'.
emailstringNoContact email. Not displayed publicly; used for editorial contact.
photostringNoBare filename from content/organizations/images/, e.g. 'acme-corp.png'.
photoAltstringNoAlt text for the logo or photo.
social.linkedinURLNoFull LinkedIn company page URL.
social.xURLNoFull X (Twitter) profile URL.
social.githubURLNoFull GitHub organisation URL.
social.websiteURLNoOrganisation website.
expertisestring[]NoAreas the organisation specialises in, e.g. ['B2B SaaS', 'Fintech'].
hobbiesstring[]NoOptional secondary interests shown on the profile page.
isTeambooleanNotrue to show on the /team page. Default true; set false for external orgs.
isAuthorbooleanNotrue allows this entry to be referenced as an author. Default true.
featuredbooleanNotrue highlights this organisation in listing grids. Default true.
ordernumberNoSort 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.