mirror of
https://github.com/GenderDysphoria/GenderDysphoria.fyi.git
synced 2025-02-07 10:16:16 +00:00
13 lines
238 B
JavaScript
13 lines
238 B
JavaScript
|
|
||
|
const format = require('date-fns/format');
|
||
|
|
||
|
module.exports = exports = ({ id, date }) => `---
|
||
|
id: "${id}"
|
||
|
date: "${date.toISOString()}"
|
||
|
title: ""
|
||
|
description: "Outfit of the Day for ${format(date, 'MMM do, yyyy')}"
|
||
|
tags:
|
||
|
- OOTD
|
||
|
---
|
||
|
`;
|