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

48 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to ailog - 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>
<article>
<h1>Welcome to ailog</h1>
<time>2025-01-06</time>
<div class="content">
<h1>Welcome to ailog</h1>
<p>This is your first post powered by <strong>ailog</strong> - a static blog generator with AI features.</p>
<h2>Features</h2>
<ul>
<li>Fast static site generation</li>
<li>Markdown support with frontmatter</li>
<li>AI-powered features (coming soon)</li>
<li>atproto integration for comments</li>
</ul>
<h2>Getting Started</h2>
<p>Create new posts with:</p>
<pre><code><span style="color:#8fa1b3;">ailog</span><span style="color:#c0c5ce;"> new &quot;</span><span style="color:#a3be8c;">My New Post</span><span style="color:#c0c5ce;">&quot;</span>
</code></pre>
<p>Build your blog with:</p>
<pre><code><span style="color:#8fa1b3;">ailog</span><span style="color:#c0c5ce;"> build</span>
</code></pre>
<p>Happy blogging!</p>
</div>
</article>
</main>
<footer>
<p>&copy; 2025 My Blog</p>
</footer>
</body>
</html>