Files
angular.js/docs/app/assets/Error404.html
Peter Bacon Darwin 853999de10 docs(404 errors): provide a better 404 experience
It is a bit rough and ready but does a better job than nothing.
2014-03-07 20:05:58 +00:00

14 lines
438 B
HTML

<h1>Welcome To AngularJS</h1>
<p>The page you were looking for is not here. Perhaps you were looking for something else...</p>
<div class="search-results-frame" ng-controller="Error404SearchCtrl">
<div ng-repeat="(key, value) in results" ng-show="value.length">
<h4>{{ key }}</h4>
<ul class="search-results">
<li ng-repeat="item in value"><a ng-href="{{ item.path }}">{{ item.name }}</a></li>
</ul>
</div>
</div>