Community guidelines
Please keep discussions civil and on-topic. Repeated violations may lead to a temporary ban.
Andy Miller Grav Creator
Grav Core Team Grav Forum Moderators
@rhuk · Joined 9 years ago · 335 posts · 28 topics · 181 reputation
Badges
Recent posts
-
What technology is used by grav
· 8 years ago
Read the docs: https://getgrav.org/features https://getgrav.org/about https://learn.getgrav.org/basics/what-is-grav Plenty more if you google.
-
Why doesn't Gantry 5 run as Multisite?
· 8 years ago
Multisite is complicated :) . That's the main reason. Multisite for Grav already adds significant complexity that the Grav Admin plugin is not even fully multisite compatible. Gantry adds another lev
-
Update to Symfony 4
· 8 years ago
As answered on the Github issues, Symfony 4 has much stricter PHP requirements than Grav does. This means that we would have to only support PHP 7.1.3+, while currently, Grav supports PHP 5.5.9+. We
-
Trailing slash at end of URLs
· 8 years ago
This option is really only to handle external links that have a trailing slash to be redirected to the URL without it. While Grav 'supports' URLs with a trailing slash, the default URLs do not have t
-
Grav Meetup in Denver, CO - March 13th 2018
· 8 years ago
Steve Luiting has been gracious enough to provide a location for our Grav meetups and will be helping me co-host these events going forward. At this first meetup we want to chat about the Grav CMS in
-
Get the route path of a page
· 8 years ago
what are you trying exactly?
-
Fetch JSON from external source
· 8 years ago
You can't return a variable, twig function just return a string or an object. The $results you are already returning should work: {% set jobs = jobs() %} {{ dump(jobs) }} Should show you the result y
-
Included grav-logo.svg missing on extending theme
· 8 years ago
that was the use Grav\Common\Grav; line i mentioned that needed to be added. See this: https://github.com/getgrav/grav-theme-quark/blob/develop/quark.php BTW, in the future, use Devtools plugin to cr
-
Non latin characters in media (filenames)
· 8 years ago
Probably create an issue here: https://github.com/getgrav/grav/issues In the meantime use regular latin characters.
-
Display page.summary without images in partials templates
· 8 years ago
one option is to create a new custom header property like: title: My Title summary: My summary **intro text** without an image Then modify your Twig to use {{ page.header.summary|markdown }} Or you co