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

Muut Archive Legend

@Muut · Joined 9 years ago · 18337 posts · 3878 topics · 137 reputation

Badges

✏️ First Post 💬 Conversation Starter ❤️ Well Liked

Recent posts

  • Concatenation in Twig · 10 years ago

    thank you. {% set all_current_movies = page.find('/movies/' ~ year ~ '-kw-' ~ week).collection %} is the answer.

  • Concatenation in Twig · 10 years ago

    'movies' ~ year ~ '-kw-'...

  • Concatenation in Twig · 10 years ago

    {% 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

  • Blueprint options reference · 10 years ago

    Thanks, more information about blueprint options would be very useful. For example, what is the correct syntax for creating multi tabs in the admin? I only managed to add tabs by extending the default

  • Blueprint options reference · 10 years ago

    thanks, that was helpful

  • Blueprint options reference · 10 years ago

    Currently that's something missing from the docs, and one thing we need to improve. You need to read how the fields are built from the source. Here's a pointer to the twig files that define the field

  • Blueprint options reference · 10 years ago

    The "REFERENCE: AVAILABLE FORM FIELDS" (http://learn.getgrav.org/forms/blueprints/reference-fields-available) in the documentation is fine. But where can I find information about the options blueprin

  • Question from a noob · 10 years ago

    You need to create a plugin to process custom PHP. There's no option to include random PHP code in the page itself. A very brief explanation on how to do it is available at https://gist.github.com/fla

  • Question from a noob · 10 years ago

    I can't find a doc that explains enabling PHP in the page header. Can you please provide more info on this.

  • Question from a noob · 12 years ago

    You can certainly embed HTML in a markdown page. HTML within markdown is 100% standard and supported as part of the markdown 'spec'. If you need logic, you can use Twig in markdown content too as lo