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

Community guidelines

Please keep discussions civil and on-topic. Repeated violations may lead to a temporary ban.

Pedro Oliveira Member

@Pdro · Joined 8 years ago · 21 posts · 9 topics · 6 reputation

Badges

✏️ First Post 💬 Conversation Starter

Recent posts

  • SSL error in local and live server · 5 years ago

    Found the culprit. For some reason the same file manifest.json that was required by chrome, was creating this problem. After commenting this line, the site was back online.

  • SSL error in local and live server · 5 years ago

    Hi, I have a site (https://acltranslation.pt) with SSL issues, both on live (with Cloudflare) and local versions. I suspect it may lie in Grav config (though I could be wrong). The weird part is it wa

  • My website - Abiesco · 6 years ago

    Great site! Liked it a lot. 👍 Cheers! Pedro

  • Some sites made with grav · 6 years ago

    Thank you for your kind words, sir! Cheers, Pedro

  • Some sites made with grav · 6 years ago

    I've been using Grav for some time now and as a designer/web designer/frontend dev I'm still in love with it. And it integrates perfectly with git which is awesome! Here's some links. https://epocho

  • Extend modular.html.twig in child Quark theme · 7 years ago

    Is it safe to say that there is no way to extend the template directly from parent theme? For now i copied modular.html.twig to child, but this undermines the inheritence principle, I think. Still sea

  • Extend modular.html.twig in child Quark theme · 7 years ago

    Hi, I'm trying to add some code in modular.html.twig - {% block body %} - in my child theme. But when I add the modular.html.twig with {% extends 'modular.html.twig' %} it results in: Fatal error : Al

  • Call hero image from parent blog page to post · 7 years ago

    Nice, It worked! Thank you @gnat ! Cheers! Pedro

  • Call hero image from parent blog page to post · 7 years ago

    Hi, I need to show the hero image from blog main page in the children posts. I can call the first image in the page media, with: {% set page = page.find('/news') %} {% set hero_image = page.media.imag

  • Show first image post in another page · 7 years ago

    Found the culprit. {% set image = page.media.images|first %} Should be: {% set image = post.media.images|first %} Cheers! Pedro