log/test-blog/public/index.html
2025-06-06 02:14:35 +09:00

38 lines
831 B
HTML

<!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>