Previous attempt still processed files in admin folder.
Now using ignores.add() for entire folders (admin/**, tasks/**)
so 11ty only copies them via passthrough, doesn't render as templates.
This prevents build failures on HTML files with React/JSX syntax.
Issue: 11ty was trying to process mobile.html as Liquid template,
failing on React JSX syntax.
Fix: Added eleventyConfig.ignores to skip template processing,
still copies file via passthrough.
This allows the HTML/React file to deploy without build errors.
Moved tasks.html to tasks/index.html
Updated 11ty to copy tasks/ folder
Now accessible at firefrostgaming.com/tasks (no .html extension needed)
Matches the pattern used by /admin for Decap CMS.