Anthony Kolber

Results 21 comments of Anthony Kolber

Give `slice()` a try. ``` {% for page in page.children | slice(0,3) | reverse %} ```

Oh, my mistake, it's actually a method. So, ``` {% for page in slice(page.children, 0, 3) | reverse %} ```

Hey @hiflute, how old is the version are you using? It might be worth pulling down the latest version and trying again. Using `#` headings within page content should work...

You can add a variable `hide_from_search: true` to any pages you want to exclude from the search. You can see the code implementation of how that works in 'app/cache.inc.php' here:...

Thanks for the heads up Eric. Do you know the best way to clean old file references from a repository?

This is due to a bug in the old template parser. The new templating system which runs on Twig should does not have this issues. Alternatively, you can get around...

3.0 is stable, so completely ready to use. The documentation is not yet 100% updated, but it should be fairly easy to understand the differences. The [wiki](https://github.com/kolber/stacey/wiki) is your best...

Irritatingly, that technique doesn't work with all versions of php5. Even worse, the correct technique, `call_user_func` has bugs on certain php5.\* versions, but not all. So `eval` turns out to...

How about `$key = urldecode(key($get));`?

I was actually just playing around with this the other day. It's really powerful. My only concern is that template inheritance might confuse the more non-technical users if we put...