Logs for #nikola for 2020-03-28

18:22:57 <sakkemo> q: how would I know which template is used for the page folder index pages when PAGE_INDEX = True in the conf.py?
18:37:54 <ChrisWarrick> sakkemo: this question can often be answered by looking at the specific plugin
18:37:56 <ChrisWarrick> sakkemo: https://github.com/getnikola/nikola/blob/master/nikola/plugins/task/page_index.py
18:38:05 <ChrisWarrick> sakkemo: in this case, it’s list.tmpl
18:41:47 <sakkemo> ChrisWarrick: thanks! I see it now. Another issue I had was that it wanted to use the blog title as the page title, from here: https://github.com/getnikola/nikola/blob/master/nikola/plugins/task/page_index.py#L95 -- I would need to modify the plugin to change it? (unless I would e.g. use some other variable from context)
18:50:54 <ChrisWarrick> sakkemo: With the default templates, you’d need to modify the plugin
18:51:32 <sakkemo> thx, I'll sleep on it
18:51:41 <ChrisWarrick> sakkemo: If you were using jinja2, then you could modify the <title> tag to use blocks, and override the block in list.tmpl on condition
18:51:59 <ChrisWarrick> sakkemo: and you could do that with mako as well