-
Notifications
You must be signed in to change notification settings - Fork 790
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(app,registry): improve index page detection, add 404 page
- Loading branch information
Showing
4 changed files
with
98 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
<html> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>Welcome</title> | ||
<link rel="stylesheet" type="text/css" href="assets/css/fa-brands.min.css"> | ||
<link rel="stylesheet" type="text/css" href="assets/css/fa-solid.min.css"> | ||
<link rel="stylesheet" type="text/css" href="assets/css/fontawesome.min.css"> | ||
<link rel="stylesheet" type="text/css" href="assets/css/welcome.min.css"> | ||
</head> | ||
|
||
<body class="is-unselectable"> | ||
<section class="hero is-fullheight"> | ||
<div class="hero-body"> | ||
<div class="container"> | ||
<div class="columns is-vcentered"> | ||
<div class="column"> | ||
<p class="title">File not found</p> | ||
<p class="subtitle">aaa</p> | ||
</div> | ||
<div class="column"> | ||
<p class="subtitle is-5">Get in touch</p> | ||
<div class="command-block" onclick="zAppBridge.openShortUrl('gitter')"> | ||
<p class="title is-6">Gitter</p> | ||
<p class="subtitle is-6">Chat with developers and other users</p> | ||
</div> | ||
<div class="command-block" onclick="zAppBridge.openShortUrl('github')"> | ||
<p class="title is-6">GitHub</p> | ||
<p class="subtitle is-6">Contribute to the project</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="hero-foot"> | ||
<div class="container"> | ||
<div class="content has-text-centered"> | ||
<p> | ||
<a class="icon" onclick="zAppBridge.openShortUrl('github')"> | ||
<i class="fab fa-github"></i> | ||
</a> | ||
<a class="icon" onclick="zAppBridge.openShortUrl('gitter')"> | ||
<i class="fab fa-gitter"></i> | ||
</a> | ||
<a class="icon" onclick="zAppBridge.openShortUrl('twiter')"> | ||
<i class="fab fa-twitter"></i> | ||
</a> | ||
</p> | ||
<p> | ||
<a class="is-size-7" onclick="zAppBridge.openShortUrl('report-bug')"> | ||
<span class="icon"> | ||
<i class="fas fa-bug"></i> | ||
</span> | ||
<span>Report a problem</span> | ||
</a> | ||
</p> | ||
<p></p> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ | |
<file>browser/assets/css/welcome.min.css</file> | ||
<file>browser/assets/fonts/fa-brands-400.woff</file> | ||
<file>browser/assets/fonts/fa-solid-900.woff</file> | ||
<file>browser/404.html</file> | ||
<file>browser/welcome.html</file> | ||
<file>icons/type/Abbreviation.png</file> | ||
<file>icons/type/[email protected]</file> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters