Added 404 page, updated introduction

This commit is contained in:
PROGRESS\kerpecheva 2020-06-02 15:22:33 +03:00
Родитель ab149f95d6
Коммит 26d4f5d062
3 изменённых файлов: 88 добавлений и 4 удалений

81
40x.html Normal file
Просмотреть файл

@ -0,0 +1,81 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Error 404</title>
<link rel="shortcut icon" href="/devtools/universal-windows-platform/favicon.ico" />
<style>
html {
font-family: Roboto, Helvetica, Arial, sans-serif;
line-height: 1.5em;
}
.content {
max-width: 768px;
padding-left: 200px;
margin: 200px auto;
position: relative;
}
.ninja {
position: absolute;
left: 0;
top: 0;
}
h1 {
margin: 0 0 40px;
font: 600 60px/.9 Roboto, Helvetica, Arial, sans-serif;
letter-spacing: -.03em;
}
h2 {
margin: 0 0 20px;
font: 400 28px/1 Roboto, Helvetica, Arial, sans-serif;
letter-spacing: -.035em;
}
ul {
padding: 0 0 0 1.3em;
margin: 0;
}
a,
a:visited {
color: #0487c4;
text-decoration: none;
transition: color .2s ease, opacity .2s ease;
}
a:hover,
a:focus {
color: #036c9c;
text-decoration: underline;
}
</style>
</head>
<body>
<div class="content">
<img class="ninja" src="/devtools//universal-windows-platform/images/ninja-icon.png" />
<h1>
Oh, no!
<br /> It seems we've lost this page
</h1>
<h2>
Things you can try:
</h2>
<ul>
<li>
<a href="#" onclick="history.go(-1); return false;">Go back</a> and try another way</li>
<li>Head to the
<a href="/devtools//universal-windows-platform/">Documentation Homepage</a>
</li>
<li>Cheer up and
<a href="http://www.telerik.com/download">try our products</a>. Some of them are free!</li>
</ul>
</div>
</body>
</html>

Просмотреть файл

@ -99,7 +99,7 @@ Telerik UI for UWP has an open source version which can be downloaded from the [
For any issues you might encounter while working with UI for UWP, use any of the available support channels:
- UI for UWP license holders and active trialists can take advantage of the outstanding customer support delivered by the developers building the library. To submit a support ticket, use our [support system](https://www.telerik.com/account/support-tickets/my-support-tickets.aspx).
- UI for UWP license holders and active trialists can take advantage of the outstanding customer support delivered by the developers building the library. To submit a support ticket, use our [UI for UWP dedicated support](https://www.telerik.com/account/support-tickets?pid=1653) system.
- [UI for UWP forum](https://www.telerik.com/forums/ui-for-universal-windows-platform) is part of the free support you can get from the community and from the UI for UWP team on all kinds of general issues.
- [UI for UWP feedback portal](https://feedback.telerik.com/uwp) provides information on the features in discussion and also the planned ones for release.
- [UI for UWP GitHub issue list](https://github.com/telerik/UI-For-UWP/issues) can be used for bug reports.
@ -107,9 +107,8 @@ For any issues you might encounter while working with UI for UWP, use any of the
## Related Links
- Telerik UI for UWP product page - https://www.telerik.com/universal-windows-platform-ui
- Latest news for Telerik UI for UWP - https://www.telerik.com/support/whats-new/uwp
- [Telerik UI for UWP product page](https://www.telerik.com/universal-windows-platform-ui)
- [Latest news for Telerik UI for UWP](https://www.telerik.com/support/whats-new/uwp)
## Help us Improve the Telerik UI for Universal Windows Platform Documentation

Просмотреть файл

@ -146,6 +146,10 @@
<remove fileExtension=".woff" />
<mimeMap fileExtension=".woff" mimeType="application/x-font-woff" />
</staticContent>
<httpErrors errorMode="Custom" defaultResponseMode="File" >
<remove statusCode="404" />
<error statusCode="404" path="40x.html" />
</httpErrors>
</system.webServer>
</configuration>