this repo has no description

Update

+3
README.md
···
+
# Tangled Pages Example
+
+
This is an example of a site hosted with [tangled-pages](https://tangled.sh/@gracekind.net/tangled-pages).
+1
pages_config.yaml
···
baseDir: /public
+
notFoundFilepath: /404.html
+10
public/404.html
···
+
<html>
+
<head>
+
<title>Not Found</title>
+
<link rel="stylesheet" href="/style.css" />
+
</head>
+
<body>
+
<h1>Not Found</h1>
+
<p>This is an example of a custom 404 page.</p>
+
</body>
+
</html>
+5 -8
public/index.html
···
-
<!DOCTYPE html>
-
<html lang="en">
+
<html>
<head>
-
<meta charset="UTF-8" />
-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
-
<title>Static Site Example</title>
-
<link rel="stylesheet" href="/css/style.css" />
+
<title>Tangled Pages Example</title>
+
<link rel="stylesheet" href="/style.css" />
</head>
<body>
-
<h1>Static Site Example</h1>
-
<p>This is an example of a static site!</p>
+
<h1>Tangled Pages Example</h1>
+
<p>This is an example of a static page hosted on a tangled repo!</p>
</body>
</html>