27 lines
911 B
HTML
27 lines
911 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Test Site Chirho</title>
|
|
<style>
|
|
body {
|
|
font-family: system-ui, -apple-system, sans-serif;
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
padding: 2rem;
|
|
line-height: 1.6;
|
|
}
|
|
h1 { color: #333; }
|
|
.tagline { color: #666; font-size: 1.2rem; }
|
|
footer { margin-top: 3rem; padding-top: 1rem; border-top: 1px solid #eee; color: #888; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Welcome to Test Site</h1>
|
|
<p class="tagline">A simple test site for demonstrating Claude Code edits</p>
|
|
<p>This is a basic website that will be edited by Claude Code based on feedback submitted through Gitea issues.</p>
|
|
<footer>For God so loved the world - John 3:16</footer>
|
|
</body>
|
|
</html>
|