├── assets/
│   ├── css/
│   │   └── style.css
│   ├── js/
│   │   ├── main.js
│   │   ├── notes.js
│   │   ├── note-detail.js
│   │   └── admin.js
│   └── images/          (空目录)
└── README.md
📄 文件内容
1. index.html
html
<!DOCTYPE html>
<html lang="zh-CN">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>风中的校长 · 专业教育咨询</title>
  <meta name="description" content="专注家庭教育与成长规划，10年教育行业经验，1000+家庭信赖。提供学习习惯培养、升学规划、青春期心理疏导等服务。">
  <meta name="keywords" content="教育咨询,家庭教育,升学规划,学习习惯,青春期,青岛教育">
  <link rel="stylesheet" href="assets/css/style.css">
  <link rel="preconnect" href="https://fonts.googleapis.com">
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  <link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">
  <!-- JSON-LD 结构化数据 -->
  <script type="application/ld+json">
  {
    "@context": "https://schema.org",
    "@type": "ProfessionalService",
    "name": "风中的校长",
    "description": "专业教育咨询，专注家庭教育与成长规划",
    "url": "https://www.jianghaiedu.com",
    "telephone": "+86-138-0000-0000",
    "address": {
      "@type": "PostalAddress",
      "addressLocality": "青岛",
      "addressRegion": "山东"
    }
  }
  </script>
</head>
<body>
  <header class="header">
    <div class="container nav-container">
      <a href="index.html" class="logo">风中的校长</a>
      <nav class="nav-menu" id="navMenu">
        <a href="index.html">首页</a>
        <a href="notes.html">教育笔记</a>
        <a href="schools.html">学校研究</a>
        <a href="about.html">关于我</a>
        <a href="consultation.html">预约咨询</a>
      </nav>
      <button class="mobile-menu-btn" id="mobileMenuBtn">☰</button>
    </div>
  </header>