diff options
author | lamp | 2023-03-05 21:37:45 +0000 |
---|---|---|
committer | lamp | 2023-03-05 21:37:45 +0000 |
commit | d4c3b70d6290c52f903e674e9957b979abd4ce07 (patch) | |
tree | ba415f0f85809ffe07dd17d83ed46e5c09f2c14d /res |
initmain
Diffstat (limited to 'res')
-rw-r--r-- | res/400.html | 14 | ||||
-rw-r--r-- | res/404.html | 14 | ||||
-rw-r--r-- | res/500.html | 14 | ||||
-rw-r--r-- | res/501.html | 14 | ||||
-rw-r--r-- | res/listing.html | 35 | ||||
-rw-r--r-- | res/listing_entry.html | 11 |
6 files changed, 102 insertions, 0 deletions
diff --git a/res/400.html b/res/400.html new file mode 100644 index 0000000..db6465c --- /dev/null +++ b/res/400.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8"/> + <meta name="viewport" content="width=device-width, initial-scale=1"/> + <title>400 Bad Request</title> + <link href="data:," rel="icon"/> + </head> + <body> + <h1> + 400 Bad Request + </h1> + </body> +</html> diff --git a/res/404.html b/res/404.html new file mode 100644 index 0000000..ce779a4 --- /dev/null +++ b/res/404.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8"/> + <meta name="viewport" content="width=device-width, initial-scale=1"/> + <title>404 Not Found</title> + <link href="data:," rel="icon"/> + </head> + <body> + <h1> + 404 Not Found + </h1> + </body> +</html> diff --git a/res/500.html b/res/500.html new file mode 100644 index 0000000..84abbae --- /dev/null +++ b/res/500.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8"/> + <meta name="viewport" content="width=device-width, initial-scale=1"/> + <title>500 Internal Server Error</title> + <link href="data:," rel="icon"/> + </head> + <body> + <h1> + 500 Internal Server Error + </h1> + </body> +</html> diff --git a/res/501.html b/res/501.html new file mode 100644 index 0000000..64b1a64 --- /dev/null +++ b/res/501.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8"/> + <meta name="viewport" content="width=device-width, initial-scale=1"/> + <title>501 Not Implemented</title> + <link href="data:," rel="icon"/> + </head> + <body> + <h1> + 501 Not Implemented + </h1> + </body> +</html> diff --git a/res/listing.html b/res/listing.html new file mode 100644 index 0000000..51e88a2 --- /dev/null +++ b/res/listing.html @@ -0,0 +1,35 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8"/> + <meta name="viewport" content="width=device-width, initial-scale=1"/> + <title>/{}</title> + <link href="data:," rel="icon"/> + <style> + body {{ + font-family: sans-serif; + padding: 5px; + }} + + table {{ + border-collapse: collapse; + }} + + tr, td {{ + padding: 5px; + }} + + tr + tr {{ + border-top: 1px solid black; + }} + </style> + </head> + <body> + <h1> + /{} + </h1> + <table> + {} + </table> + </body> +</html> diff --git a/res/listing_entry.html b/res/listing_entry.html new file mode 100644 index 0000000..40183fd --- /dev/null +++ b/res/listing_entry.html @@ -0,0 +1,11 @@ +<tr> + <td> + <a href="/{}">{}</a> + </td> + <td> + {} + </td> + <td> + {} + </td> +</tr> |