Hello.
I just discovered Automad and immediately liked everything in it. 'Philosophy', process, automatism, theming...
So that I begun to plan to move my own Wordpress site to Automad.
I installed Automad in a folder in xammp. I'm on Windows.
I ran a few tests to familiarize myself with this new tool.
I found a detail not working well in the Contact Form.
The honeypot field from the mail extension was still present. That's because the mail.css could not be loaded because of an error of the link in the header.
Actually I'm getting this in the Contact form (because it uses the mail extension):
<link type="text/css" rel="stylesheet" href="\packages\standard\mail/mail.css" />
with backslashes and slashes mixed!
The css can't be found this way.
Instead it should be:
<link type="text/css" rel="stylesheet" href="/ikern/packages/standard/mail/mail.css" />
That's the line I found in the Contact page after I added a variable in 'itemsHeader' just copying the correct line I could get from the Contact page of dev.automat test site. The line was:
<link type="text/css" rel="stylesheet" href="/packages/standard/mail/mail.css" />
So there are two things:
1) backslashes instead of slashes inserted somewhere?
2) root folder not added? Consider that, as you can see, Automad added the root folder automatically while reading the itemsHeader variable from the Contact page.
So probably something wrong happens when itemsHeader gets handled by the mail extension.
Is it a bug or something wrong in my installation or xammp or Windows?
All the best