Muut Archive Legend
@Muut · Joined 9 years ago · 18337 posts · 3878 topics · 137 reputation
Badges
Recent posts
-
Share working drafts of a website
· 10 years ago
Grav is probably overkill for this, but I'll ask anyway. I'm developing content for a client company where most of the people seem to have great difficulty in understanding Markdown files and my comme
-
Link from modular page not being rendered
· 10 years ago
Note that the above page where I want to put the links (Features) is a modular page.
-
Link from modular page not being rendered
· 10 years ago
Hi, I am using the Woo skeleton and in the Features page, I wish to link some of the text to detailed content in other pages. However the link is not being rendered correctly. It simply shows the exac
-
Blog Archive: How to use daterange filter dynamically?
· 10 years ago
I just discoverd the archive plugin which does exactly what I need!
-
Blog Archive: How to use daterange filter dynamically?
· 10 years ago
Hi! First of all, thank you for this awesome CMS - totally in love with grav :) I want to filter a page collection by month and year ( Screenshot 2016-08-16 19 ). I was happy to see, that there is a
-
Disable form
· 10 years ago
Is there any way to programmatically disable a form, or parts thereof (preferably the submit button)? Tried to embed code as under the process part of form.md, i.e. for a form element: disabled: {% co
-
Slice blog post in collection
· 10 years ago
Sorry we put like this but its not working {% for ps in taxonomy.findTaxonomy({'category':'World'})|slice(5,) %}
-
Slice blog post in collection
· 10 years ago
it's an array so simply pull the 5th one remebering arrays are zero-based indexed so the index is 4 for the 5th item: {{ my_array[4] }}
-
Slice blog post in collection
· 10 years ago
if we want to show only one like 5th number of post then how we set
-
Slice blog post in collection
· 10 years ago
Looks about right, for the first 5 it should be |slice(0,5) as it's start, length http://twig.sensiolabs.org/doc/filters/slice.html