I had some issues with a (mostly) working website, so started with a new Grav-quark. I added plugins to make sidebar as it was i.e. sidebar, simplesearch, random, taxonomylist, archives - all work nicely except taxonomy list.html.twig finds an empty taxlist and displays only the heading.
My blog page is "blog".
I am using the default category blog and tag as desired in system site.yaml
taxonomies: [category,tag]
user/config/plugins/taxonomylist/yaml is as follows
enabled: true
route: /blog
A sample page in user/pages/blog is
---
title: 'Cuba 2016'
taxonomy:
category: blog
tag: holiday
visible: false
date: '2016-02-25'
leadimage: cuba_group.jpg
---
sidebar template has
{% include 'partials/taxonomylist.html.twig' with
{'base_url':new_base_url, 'taxonomy':'tag'} %}
new_base_url is "/clean/blog" where "clean" is the project in htdocs.
I cannot begin to understand the first two lines of sidebar.html that derive new_base_url as used in taxonomylist. Should it maybe be "/clean/user/blog"? or ?
I must be missing something obvious and welcome any suggestions.
Thanks
Norma


