create-pro-fiori-app-cli
Version:
SAPUI5/Fiori projeleri için akıllı proje oluşturucu ve yönetici. Kod üretimi, deployment ve kalite kontrol otomasyonu sağlar.
30 lines • 982 B
text/xml
<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="<h1 style='margin:15px;'>404</h1>" />
<core:HTML content="<p style='margin:0;'>{i18n>notFoundMessage}</p>" />
</VBox>
</FlexBox>
</mvc:View>