Skip to content
Snippets Groups Projects
Commit f2ee10f8 authored by Kathrin Osswald's avatar Kathrin Osswald
Browse files

Added modification hints to overridden layout files.

parent bcbd2dd2
No related branches found
No related tags found
No related merge requests found
......@@ -6,6 +6,7 @@ Changes
### Unreleased
* 2017-07-04 - Added modification hints to overridden layout files.
* 2017-07-04 - Fix CSS selector for the footer separator lines.
* 2017-07-03 - Minor improvements to the availability info for activities and resources.
* 2017-06-28 - Add Travis CI support
......
......@@ -53,11 +53,19 @@ $templatecontext = [
];
$templatecontext['flatnavigation'] = $PAGE->flatnav;
// MODIDFICATION START.
// Render colums2.mustache from boost_campus.
echo $OUTPUT->render_from_template('theme_boost_campus/columns2', $templatecontext);
// MODIFICATION END.
/* ORIGINAL START.
echo $OUTPUT->render_from_template('theme_boost/columns2', $templatecontext);
ORIGINAL END. */
// MODIFICATION START.
// Add footer blocks and standard footer.
require_once(dirname(__FILE__).'/includes/footer.php');
// Add badgearea.
require_once(dirname(__FILE__).'/includes/badgearea.php');
// Add footnote.
require_once(dirname(__FILE__).'/includes/footnote.php');
// MODIFICATION END.
......@@ -35,10 +35,10 @@ $templatecontext = [
echo $OUTPUT->render_from_template('theme_boost/login', $templatecontext);
/* MOFIFICATION START:
* Include own layout file for the footnote region.
* The theme_boost/login template already renders the standard footer.
* The footer blocks and the badge area are currently not shown on the login page.
* Here, we add the footnote only. */
// MOFIFICATION START.
// Include own layout file for the footnote region.
// The theme_boost/login template already renders the standard footer.
// The footer blocks and the badge area are currently not shown on the login page.
// Here, we add the footnote only.
require_once(dirname(__FILE__).'/includes/footnote.php');
/* MODIFICATION END. */
// MODIFICATION END.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment