diff --git a/src/sebin/sebin.11tydata.js b/src/sebin/sebin.11tydata.js index a9554f6..db62600 100644 --- a/src/sebin/sebin.11tydata.js +++ b/src/sebin/sebin.11tydata.js @@ -219,7 +219,7 @@ const getWingspan = () => `${wingspan / 100} m (${toImperial(wingspan)})`; const getTraits = () => [ { icon: 'cake-candles', type: 'Date of Birth', text: getDateOfBirth() }, - { icon: 'mars', type: 'Sex/Gender', text: gender }, + { icon: 'mars', type: 'Sex/Gender', text: `${gender} (${pronouns})` }, { icon: 'ruler', type: 'Height', text: getHeight() }, { icon: 'weight-hanging', type: 'Weight', text: getWeight() }, { icon: 'ruler', type: 'Tail Length', text: getTailLength() }, diff --git a/src/viktor/viktor.11tydata.js b/src/viktor/viktor.11tydata.js index 519fa93..91410cd 100644 --- a/src/viktor/viktor.11tydata.js +++ b/src/viktor/viktor.11tydata.js @@ -116,7 +116,7 @@ const getWeight = () => `${weight} kg (${toLbs(weight)} lbs)`; const getTraits = () => [ { icon: 'cake-candles', type: 'Date of Birth', text: getDateOfBirth() }, - { icon: 'mars', type: 'Sex/Gender', text: gender }, + { icon: 'mars', type: 'Sex/Gender', text: `${gender} (${pronouns})` }, { icon: 'ruler', type: 'Height', text: getHeight() }, { icon: 'weight-hanging', type: 'Weight', text: getWeight() } ];