<mvc:View
    controllerName="<%= namespace %>.controller.NotFound"
    xmlns:mvc="sap.ui.core.mvc"
    xmlns="sap.m"
    xmlns:core="sap.ui.core"
    displayBlock="true"
    height="100%"
    busyIndicatorDelay="0"
    xmlns:html="http://www.w3.org/1999/xhtml"
>
    <html:style>
        .notFound {
        background-color: #2F3242;
        }
        .notFoundImg svg {
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -250px;
        margin-left: -400px;
        }
    </html:style>
    <FlexBox justifyContent="Center" alignItems="Center" width="100%" height="100%" class="notFound">
        <Image src="img/backgrounds/notfound.svg" class="notFoundImg" />
        <VBox class="message-box">
            <core:HTML content="&lt;h1 style='margin:15px;'&gt;404&lt;/h1&gt;" />
            <core:HTML content="&lt;p style='margin:0;'&gt;{i18n>notFoundMessage}&lt;/p&gt;" />
        </VBox>
    </FlexBox>
</mvc:View>