stable

Clone or download

Read-only

Add base structure to the output

Part of story #9197: Get rid of Bootstrap in site admin Now BurningParrot outputs a proper html structure (with <head> and <body>). You can assert that by looking at the generated source or in the title of the page. From a development point of view, BurningParrot as a autoload.php file so that we don't have a huge stack of require_once at the beginning of the Theme. Change-Id: I9175952f2a4357fd8ff33efd171f68d97bdd3c2b

Modified Files

Name
M Makefile +4 −0 Go to diff View file
M src/common/autoload.php +2 −4 Go to diff View file
M src/common/include/Response.class.php +1 −1 Go to diff View file
M src/common/layout/BaseLayout.php +17 −0 Go to diff View file
M src/common/layout/Layout.class.php +1 −13 Go to diff View file
M src/common/layout/ThemeManager.class.php +18 −16 Go to diff View file
M src/www/themes/BurningParrot/BurningParrotTheme.php +10 −1 Go to diff View file
A src/www/themes/BurningParrot/HeaderPresenter.php +39 −0 Go to diff View file
A src/www/themes/BurningParrot/autoload.php +19 −0 Go to diff View file
A src/www/themes/BurningParrot/templates/footer.mustache +2 −0 Go to diff View file
A src/www/themes/BurningParrot/templates/header.mustache +8 −0 Go to diff View file