"body": "<!DOCTYPE html>\\n\\t\\t\\t\\t<html>\\n\\t\\t\\t\\t<head>\\n\\t\\t\\t\\t\\t<meta charset=\\\"utf-8\\\">\\n\\t\\t\\t\\t\\t<title>subpage</title>\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t</head>\\n\\t\\t\\t\\t<body>\\n\\t\\t\\t\\t\\t<h1>you were redirected to a subpage wowow</h1>\\n\\t\\t\\t\\t\\t<p>this does the same thing as the other page</p>\\n\\t\\t\\t\\t\\t<p>The button console logs that you clicked it</p>\\n\\t\\t\\t\\t\\t<button id=\\\"button\\\">Click Me</button>\\n\\t\\t\\t\\t\\t<script>\\n\\t\\t\\t\\t\\tfunction log() {\\n\\t\\t\\t\\t\\t\\tconsole.log(\\\'You clicked the button\\\');\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\tvar button = document.getElementById(\\\'button\\\');\\n\\t\\t\\t\\t\\tbutton.addEventListener(\\\'click\\\', log);\\n\\t\\t\\t\\t\\t</script>\\n\\t\\t\\t\\t\\t<!-- create a link to a subpage -->\\n\\t\\t\\t\\t\\t<p>click this to go back to the other page</p>\\n\\t\\t\\t\\t\\t<a href=\\\"simple.html\\\">Subpage</a>\\n\\t\\t\\t\\t</body>\\n\\t\\t\\t\\t</html>",
"path": "/subpage.html",
"content_type": "text/html"
},
{
"body": "<!DOCTYPE html>\\n\\t\\t\\t\\t<html>\\n\\t\\t\\t\\t<head>\\n\\t\\t\\t\\t\\t<meta charset=\\\"utf-8\\\">\\n\\t\\t\\t\\t\\t<title>Simple</title>\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t</head>\\n\\t\\t\\t\\t<body>\\n\\t\\t\\t\\t\\t<h1>Simple html file to deploy</h1>\\n\\t\\t\\t\\t\\t<p>The button console logs that you clicked it</p>\\n\\t\\t\\t\\t\\t<button id=\\\"button\\\">Click Me</button>\\n\\t\\t\\t\\t\\t<script src=\\\"./simple.js\\\"></script>\\n\\t\\t\\t\\t\\t<!-- create a link to a subpage -->\\n\\t\\t\\t\\t\\t<a href=\\\"subpage.html\\\">Subpage</a>\\n\\t\\t\\t\\t</body>\\n\\t\\t\\t\\t</html>",