Fix webfonts and feed styling

This commit is contained in:
N-Upchurch
2023-08-06 20:49:19 -05:00
parent c7973a2439
commit 7119aafaed
4 changed files with 57 additions and 54 deletions

View File

@ -41,6 +41,9 @@ module.exports = function(eleventyConfig) {
// Passthrough
eleventyConfig.addPassthroughCopy({ 'public/xsl/*': "/xsl/" });
eleventyConfig.addPassthroughCopy({ 'public/img/*': "/img/" });
// Copying so that basic.xsl can use it
eleventyConfig.addPassthroughCopy({ 'public/css/index.css': "/css/index.css" });
eleventyConfig.addPassthroughCopy({ 'public/css/webfonts/*': "/webfonts/" });
// Get the first `n` elements of a collection.
eleventyConfig.addFilter("head", (array, n) => {