Open
Description
The README says that in the config file, parent = /
is allowed. However, if I set so (I would like my tags to be located at http://example.com/tag instead of http://example.com/blog/tag):
- URLs
{{ ('/@tag/' ~ t.lower())|url }}
produce the error(KeyError: '/@tag/foo/')
(and page does not build, and tag pages are not created); - with URLs
{{ ('/blog@tag/' ~ t.lower())|url }}
, tag pages are not created either, but blog posts are created, although tag URLs are http://example.com/blog@tag/foo, which are dead link.
How can I make lektor-tags work with parent = /
?