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