Skip to content
This repository has been archived by the owner on Jun 9, 2022. It is now read-only.

Authors page does not exist #13

Open
pmatousu opened this issue Aug 6, 2018 · 2 comments
Open

Authors page does not exist #13

pmatousu opened this issue Aug 6, 2018 · 2 comments

Comments

@pmatousu
Copy link

pmatousu commented Aug 6, 2018

When language is auto included by grav in the url, then the authors and possibly other pages routed via taxonomy do not exist.
Link like thi works: /docs/taxonomy?name=author
This one not: /docs/cs/taxonomy?name=author

@Perlkonig
Copy link
Owner

I don't work with multi-language blogs personally. I'll have to do some research. Are you using multi-langauge pages?

@ftertre
Copy link

ftertre commented Feb 21, 2019

Hi, from my side, I work with multisite setup with sub directory version. And I also have a problem with Authors page, but it has been solved with adding a small / in the 02.authors/default.md

title: Authors
redirect: '/taxonomy?name=author'

content:
    items: @self.children

cache_enable: false
twig_first: true
process:
    markdown: false
    twig: true
---

<h1>Authors</h1>
<ul>
{% for p in page.collection %}
    <li><a href="{{ p.url }}">{{ p.title }}</a></li>
{% endfor %}
</ul>

Hope it will help

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants