Skip to content

Commit e4c8171

Browse files
committed
docs: add CLAUDE.md and update site title
1 parent 0f9ddb6 commit e4c8171

File tree

2 files changed

+35
-13
lines changed

2 files changed

+35
-13
lines changed

CLAUDE.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# CLAUDE.md
2+
3+
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
4+
5+
## Project Overview
6+
This is a static website project hosted on GitHub Pages. It consists of HTML files served directly without any build process. The site is automatically deployed via GitHub Actions when changes are pushed to the main branch.
7+
8+
## Architecture
9+
- **Frontend**: Pure HTML5 with basic semantic structure and navigation
10+
- **Deployment**: Automated via GitHub Actions to GitHub Pages
11+
- **Hosting**: Serverless static hosting through GitHub Pages
12+
13+
## Key Files
14+
- `index.html`: Main webpage with header, navigation, content sections, and footer
15+
- `.github/workflows/static.yml`: CI/CD pipeline for GitHub Pages deployment
16+
- `README.md`: Project documentation
17+
18+
## Development Commands
19+
Since this is a static HTML project, there are no build processes, linters, or automated tests currently configured. Basic development involves:
20+
- Editing HTML files directly
21+
- Pushing to main branch for automatic deployment
22+
23+
## GitHub Pages Deployment
24+
The project uses GitHub Actions for automated deployment:
25+
- Triggers on push to main branch
26+
- Deploys the entire repository as static content
27+
- Accessible at [username].github.io repository URL
28+
29+
## Common Tasks
30+
- **Local Development**: Open HTML files in browser or use `python -m http.server` for local hosting
31+
- **Deployment**: Push to main branch to trigger automatic deployment
32+
- **Content Updates**: Edit `index.html` and commit changes

index.html

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</head>
88
<body>
99
<header>
10-
<h1>Welcome to My Simple Web Page</h1>
10+
<h1>Welcome to lzwjava.github.io</h1>
1111
</header>
1212

1313
<nav>
@@ -19,18 +19,8 @@ <h1>Welcome to My Simple Web Page</h1>
1919
</nav>
2020

2121
<section id="home">
22-
<h2>Home Section</h2>
23-
<p>This is the home section of the page.</p>
24-
</section>
25-
26-
<section id="about">
27-
<h2>About Section</h2>
28-
<p>Learn more about the content of this page.</p>
29-
</section>
30-
31-
<section id="contact">
32-
<h2>Contact Section</h2>
33-
<p>Contact us for more information.</p>
22+
<h2>Home</h2>
23+
<p>Blog is maintaining.</p>
3424
</section>
3525

3626
<footer>

0 commit comments

Comments
 (0)