this repo has no description

Update

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