This commit is contained in:
2025-06-06 02:14:35 +09:00
parent 02dd69840d
commit a9dca2fe38
33 changed files with 2141 additions and 9 deletions

View File

@ -0,0 +1,38 @@
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Blog</title>
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<header>
<h1><a href="/">My Blog</a></h1>
<p>A blog powered by ailog</p>
</header>
<main>
<h2>Recent Posts</h2>
<ul class="post-list">
<li>
<a href="&#x2F;posts&#x2F;2025-06-06-ai統合ブログシステムの紹介.html">AI統合ブログシステムの紹介</a>
<time>2025-06-06</time>
</li>
<li>
<a href="&#x2F;posts&#x2F;welcome.html">Welcome to ailog</a>
<time>2025-01-06</time>
</li>
</ul>
</main>
<footer>
<p>&copy; 2025 My Blog</p>
</footer>
</body>
</html>