Files
camping-des-speakers-2022/content/team/team.11tydata.js
Horacio Gonzalez 88765f0964 Initial commit
2021-12-03 14:05:19 +01:00

23 lines
670 B
JavaScript

/**
* @file Contains data common to all pages, to reduce repetition
* @author Horacio Gonzalez <horacio.gonzalez@gmail.com>
*/
/**
* Directory data module for team
* @module content/team
* @see {@link https://www.11ty.dev/docs/data-template-dir/ Template and directory data files in 11ty}
* @see {@link https://www.11ty.dev/docs/permalinks/ Permalinks in 11ty}
*/
export default {
layout: 'layouts/person',
// Note: The permalink value uses Nunjucks/Liquid syntax;
// a future version of 11ty may allow for JavaScript template literals
eleventyComputed: {
permalink: data => `/team/${data.page.fileSlug}/index.html`
},
tags: [
'team'
]
}