-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0813be2
commit fac9a18
Showing
5 changed files
with
68 additions
and
15 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
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,30 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Welcome to Pingpong!</title> | ||
<style> | ||
html { | ||
color-scheme: light dark; | ||
} | ||
body { | ||
width: 35em; | ||
margin: 0 auto; | ||
font-family: Tahoma, Verdana, Arial, sans-serif; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<h1>Welcome to Pingpong!</h1> | ||
<p> | ||
If you see this page, the Pingpong server is successfully installed. | ||
</p> | ||
|
||
<p> | ||
See the documentation on | ||
<a href="https://pingpong.bluemangoo.net/">pingpong.bluemangoo.net</a> | ||
for further configuration.<br /> | ||
</p> | ||
|
||
<p><em>Thank you for using Pingpong.</em></p> | ||
</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
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,23 @@ | ||
pub static PAGE404: &str = r#"<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>404</title> | ||
<style> | ||
html { | ||
color-scheme: light dark; | ||
} | ||
body { | ||
width: 35em; | ||
margin: 0 auto; | ||
font-family: Tahoma, Verdana, Arial, sans-serif; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<h1>404</h1> | ||
<p> | ||
The page you visited does not exist. | ||
</p> | ||
</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 |
---|---|---|
|
@@ -2,3 +2,4 @@ pub mod path; | |
pub mod route; | ||
pub mod url; | ||
pub mod mime; | ||
pub mod file_err; |