TWIG
{% set year = now|date('Y') %}
{% set week = now|date('W') %}
{% set all_current_movies = page.find('movies/#{year}-kw-#{week}').collection %}
how can i fix this, so that Grav is actually referencing the pages? thanks
{% set year = now|date('Y') %}
{% set week = now|date('W') %}
{% set all_current_movies = page.find('movies/#{year}-kw-#{week}').collection %}
how can i fix this, so that Grav is actually referencing the pages? thanks
'movies' ~ year ~ '-kw-'...
thank you.
{% set all_current_movies = page.find('/movies/' ~ year ~ '-kw-' ~ week).collection %}
is the answer.
Log in to reply.
| Topic | Participants | Replies | Views | Activity |
|---|---|---|---|---|
| 0 | 1359 | 9 years ago | ||
| 2 | 936 | 9 years ago | ||
| 2 | 4066 | 9 years ago | ||
| 1 | 2956 | 9 years ago | ||
| 3 | 1121 | 9 years ago |