Skip to content
Grav 2.0 is officially stable. Read the announcement →
Archive

@self.children won't display

Started by Muut Archive 10 years ago · 6 replies · 802 views
10 years ago

Hi all !
I've just installed grav with learn2 theme and it's just great !
I'd like to add to a chapter page the list of all the children pages (with link) to make sort of a table of content..
Here's my page :

title: Achats
process:
markdown: true
twig: true
taxonomy:
category:

  • chapter
    content:
    items: '@self.children'

Do I miss something ?
Btw, I can't understand the difference of page types (chapter, docs, ...)... myabe connected to my pb ?
Best regards !
JMarc

10 years ago

In the future, please paste code between --- here in the forum, so the spacing is maintained. As spacing is critical in YAML, it can make a huge difference in outcomes.

Anyway, setting up the content.items in the page header, that page.collection() variable should be available in the Twig template. You should be able to iterate over it. However, remember @self.children only retrieves the first level of pages under this page you define the collection on.

10 years ago

Thanks for your answer, and sorry for the wrong display :

YAML
title: Achats
process:
    markdown: true
    twig: true
taxonomy:
    category:
        - chapter
content:
    items: '@self.children'

I actually have 2 children pages, but nothing appears on this page.It seems code is OK ?
Maybe the twig template doesn't take that in account. I'll check.

10 years ago

Ok that's it : a template issue.
I've added :

{% for child in page.collection %}
<div><a href="{{ child.url }}"> {{child.title}}</a></div>
{% endfor %}

in the chapter.html.twig of my theme templates, and all is fine.
Best !
JMarc

10 years ago

Btw, no way to indicate "Resolved" on my topic ?

10 years ago

Nope, unfortunately it's a limitation of this forum platform.

Suggested topics

Topic Participants Replies Views Activity
Archive · by Deleted User, 9 years ago
0 1362 9 years ago
Archive · by Muut Archive, 9 years ago
2 939 9 years ago
Archive · by Muut Archive, 9 years ago
2 4069 9 years ago
Archive · by Muut Archive, 9 years ago
1 2959 9 years ago
Archive · by Muut Archive, 9 years ago
3 1123 9 years ago