diff options
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | LICENSE | 13 | ||||
| -rw-r--r-- | README.md | 3 | ||||
| -rw-r--r-- | public/index.php | 16 | ||||
| -rw-r--r-- | public/static/style.css | 4 |
5 files changed, 37 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4e9b47a --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +config.php
\ No newline at end of file @@ -0,0 +1,13 @@ + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + Version 2, December 2004 + +Copyright (C) 2025 moderndevsLULW <moderndevslulw@alright.party> + +Everyone is permitted to copy and distribute verbatim or modified +copies of this license document, and changing it is allowed as long +as the name is changed. + + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. You just DO WHAT THE FUCK YOU WANT TO.
\ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..9b3a8a9 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +#  tinybot (www) + +a web frontend for the Tinybot Project.
\ No newline at end of file diff --git a/public/index.php b/public/index.php new file mode 100644 index 0000000..ca7f117 --- /dev/null +++ b/public/index.php @@ -0,0 +1,16 @@ +<html> + +<head> + <title>The Tinybot Project</title> + <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> + <link rel="stylesheet" href="/static/style.css"> + <link rel="shortcut icon" href="/static/favicon.ico" type="image/x-icon"> +</head> + +<body> + <main> + <h1>test</h1> + </main> +</body> + +</html>
\ No newline at end of file diff --git a/public/static/style.css b/public/static/style.css new file mode 100644 index 0000000..a068d89 --- /dev/null +++ b/public/static/style.css @@ -0,0 +1,4 @@ +* { + padding: 0; + margin: 0; +}
\ No newline at end of file |
