diff options
Diffstat (limited to 'test/example-website/about.html')
| -rw-r--r-- | test/example-website/about.html | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/test/example-website/about.html b/test/example-website/about.html new file mode 100644 index 0000000..93cba92 --- /dev/null +++ b/test/example-website/about.html | |||
| @@ -0,0 +1,42 @@ | |||
| 1 | <!DOCTYPE html> | ||
| 2 | <html lang="en"> | ||
| 3 | <head> | ||
| 4 | <meta charset="UTF-8"> | ||
| 5 | <meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
| 6 | <title>About - Deploy Test</title> | ||
| 7 | <link rel="stylesheet" href="style.css"> | ||
| 8 | </head> | ||
| 9 | <body> | ||
| 10 | <header> | ||
| 11 | <nav> | ||
| 12 | <h1>Deploy Test</h1> | ||
| 13 | <ul> | ||
| 14 | <li><a href="index.html">Home</a></li> | ||
| 15 | <li><a href="about.html">About</a></li> | ||
| 16 | </ul> | ||
| 17 | </nav> | ||
| 18 | </header> | ||
| 19 | |||
| 20 | <main> | ||
| 21 | <section class="about"> | ||
| 22 | <h2>About This Site</h2> | ||
| 23 | <p>This is a test website created to demonstrate the deploy tool's static site deployment capabilities.</p> | ||
| 24 | |||
| 25 | <h3>Features</h3> | ||
| 26 | <ul> | ||
| 27 | <li>Simple HTML/CSS structure</li> | ||
| 28 | <li>Multiple pages for testing navigation</li> | ||
| 29 | <li>Responsive design</li> | ||
| 30 | <li>Clean and minimal styling</li> | ||
| 31 | </ul> | ||
| 32 | |||
| 33 | <h3>Deployment Command</h3> | ||
| 34 | <pre><code>./deploy deploy --host peerfile --static --dir ./test/example-website --domain example.com</code></pre> | ||
| 35 | </section> | ||
| 36 | </main> | ||
| 37 | |||
| 38 | <footer> | ||
| 39 | <p>© 2025 Deploy Test. Built for testing purposes.</p> | ||
| 40 | </footer> | ||
| 41 | </body> | ||
| 42 | </html> | ||
