Hello World
# AdminThemeUikit This document currently covers customization of the Uikit styles, overriding admin theme template files and markup, and instructions on how to upgrade the core Uikit version. ## Customizing Markup ### Overriding markup files You can overwrite any of the markup files located in `wire/modules/AdminTheme/AdminThemeUikit/` by placing a file with the same name in `/site/templates/AdminThemeUikit/`. You could for example overwrite the footer by adding the file `/site/templates/AdminThemeUikit/_footer.php` to your installation: ```html
Hello World
``` This replaces all the content of every admin page with your Hello World message. That's not very useful so let's instead copy the contents of the default `_content-body.php` and use that as our starting point, and append our Hello World message within it: ```phpHello World