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

23 lines
664 B
JavaScript

/**
* @file Contains data common to all pages, to reduce repetition
* @author Reuben L. Lillie <reubenlillie@gmail.com>
*/
/**
* Directory data module for pages
* @module content/pages
* @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/page',
// Note: The permalink value uses Nunjucks/Liquid syntax;
// a future version of 11ty may allow for JavaScript template literals
eleventyComputed: {
permalink: data => `/${data.page.fileSlug}/index.html`
},
tags: [
'pages',
]
}