I've tried out the latest blog-site skeleton with the included Antimatter theme under EasyPHP on a Windows box. The themes default base_url route usually always should be expanded with /blog, but for the included archives, pagination and taxonomylist plugins this doesn't work, their browser generated URLs are always missing that /blog route portion! - How can I fix those that their base_url also add the /blog route to their URL?
I can momentary change this behavior in the corresponding partials/xxxx.html.twig files by adding manually /blog to the base_url, like for example:
<a href="{{ base_url }}/blog/tag{{ config.system.param_sep }},{{ tax|e('url') }}">{{ tax }}</a>
But that's pretty dirty to overcome with it, any hints how to fix these in the initial suggested way would be welcome!