gjbarnard / moodle-theme_foundation

Foundation theme for Moodle.
GNU General Public License v3.0
8 stars 0 forks source link

No popup layout #4

Closed miotto closed 4 years ago

miotto commented 5 years ago

Click with the mouse on the Policies URL in the footer.

footer_policies_url_error

miotto commented 5 years ago

Fix the error with:

diff --git a/config.php b/config.php
index 83a6f00..32a6850 100644
--- a/config.php
+++ b/config.php
@@ -114,7 +114,7 @@ $THEME->layouts = array(
     // Pages that appear in pop-up windows - no navigation, no blocks, no header.
     'popup' => array(
         'file' => 'layout.php',
-        'mustache' => 'popup',
+        'mustache' => 'columns1',
         'regions' => $empty,
         'options' => array('nofooter' => true, 'nonavbar' => true)
     ),
gjb2048 commented 5 years ago

Thanks! I've forgotten to add the popup template.