Skip to content

Commit 5aacdf6

Browse files
authored
Add custom 404 HTML page structure
1 parent 2765bed commit 5aacdf6

File tree

1 file changed

+10
-0
lines changed
  • Modern Development/Service Portal Widgets/custom404

1 file changed

+10
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<div>
2+
<h1 class="heading-message">${This page could not be found. Based on your search we have found below valid pages}</h1>
3+
<div class="page-container"> <!-- Container to show valid pages.-->
4+
<ul>
5+
<li ng-repeat="item in data.pageArr"> <!-- List to show valid pages.-->
6+
<a href = {{item.url}} target="_blank">{{item.name}}</a>
7+
</li>
8+
</ul>
9+
</div>
10+
</div>

0 commit comments

Comments
 (0)