2 min read
Work Collection

The work collections is found in src/content/work.

Working with the work collection:

πŸ“ /src/content/work
└── πŸ“„ apple.md
└── πŸ“„ facebook.md
└── πŸ“„ google.md
└── πŸ“„ mcdonalds.md

In the above example, four entries on the /work page will be generated.

apple, facebook, google, mcdonalds

All content must be preceded by required metadata in the markdown file in yaml format, and be enclosed by triple dashes. --- ---

---
company: "McDonalds"
role: "French Fryer"
dateStart: "01/01/2020"
dateEnd: "11/27/2022"
---

Metadata fields

FieldReqTypeRemarks
companyYesstringCompany name.
roleYesstringRole at the company. Ex: Full stack developer.
dateStartYesstringDate string that can be parsed to a date.
dateEndYesstringDate string that can be parsed to a date.

* Note: If you are still employed at company, for dateEnd you can enter Current, Now or Present instead of a date.

All that’s left to do is write your content under the metadata.

---
title: "My awesome project"
description: "A description of my project."
date: "Mar 22 2024"
draft: false
---

### Woot

This is a paragraph about my role at this company.

πŸŽ‰ Congrats, you are now a blogger, and developer, and employed.