Welcome to the Navigation Rabbit Hole

Where the paths never end and the fun never stops.

Navigate at your own risk, traveler.

				// The infinite loop, a never-ending spiral
				for (var path = "/"; path !== "/subpages/exit"; path = "/subpages/" + path + "/") {
					console.log("You are currently at " + path);
				}