I’m in the very early stages of designing a site for an architectural firm.
I’m not quite sure what would best practice or strategy for dealing with the front matter for each project. Because it needs to list fairly simple and common data across like:
+++
title = "Project title"
draft = true
typologies = [ "typo1", "typo2" ]
architect = [ "Architect1", "Architect2 ]
client = "The Client"
status = "Built"
date = 2017-11-28T07:20:30+01:00
city = "City"
country = "Country"
coordinates = [51.000000, 8.000000]
cover_image = "/images/1.jpg"
gallery = [
"/images/2.jpg/",
"/images/4.jpg/",
"/images/5.jpg/"
]
+++
But then there is only a bunch of other data that may or may not be relevant to each project, like a consultant, landscape architects, awards etc.
In my head right now it is about 10-15 data points.
My questions is how to go about this. Is there a good clean way of doing something like this?
Because just adding them with a blank value in the archetypes front matter doesn’t seem like a very elegant solution - it is even discouraged in TOML. And it would make the front matter messy.
I hope my question make sense.
Any links to useful resources or discussions is appreciated. Thanks.