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

  • Problems with SSL, Muut Comments and JS w/ Antimatter · 10 years ago

    I'm having a problem loading the required JS for Muut comments to be enabled on my pages. I'm using the antimatter theme, and in blog_item.html.twig I replaced the original comments section with <a

  • Theme variables · 10 years ago

    You add an extension if you want to call a Twig function, like {{ doSomething() }} (see https://learn.getgrav.org/cookbook/plugin-recipes#output-some-php-code-result-in-a-twig-template), but simple va

  • Theme variables · 10 years ago

    I was able to achieve this by $this->grav['twig']->twig->addExtension(new Test()); You also need to have process: twig: true in your YAML file which I didn't realise. I still don't know how t

  • Theme variables · 10 years ago

    Hi, I am trying to pass some variables into my theme. I have setup my theme class file like follows: <?php namespace Grav\Theme; use Grav\Common\Theme; class MyTheme extends Theme { public st

  • Backgroung image no-repeat · 10 years ago

    You can install the "Custom CSS" plugin https://github.com/getgrav/grav-plugin-custom-css and add a CSS rule to edit your background styling.

  • Backgroung image no-repeat · 10 years ago

    Hi! I have an installation with the big picture theme, I want to desactivate the background's option repeat image. I want my background image only shows one time, and fill the rest with a solid colour

  • "Recursive" Modular page · 10 years ago

    Apart from my remaining unclarity: Thanks for your help, flaviocopes! I could solve the problem, following your suggestion and using child pages instead of modules.

  • "Recursive" Modular page · 10 years ago

    thanks for the explanation. So I understand the different purpose of child pages and modular pages. But technically a landing page can also be achieved with child pages, right? On the other hand, a bl

  • "Recursive" Modular page · 10 years ago

    Modular pages are composed by multiple parts. But the end result is just a single page. Think of complicated landing pages, for example, impossible to define all at once in a markdown file. Child page

  • "Recursive" Modular page · 10 years ago

    Is it just, that the modular page has no content itself?