blob: e4efdb8dac4458f63e5eff67164380f34377fe74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Your first post title — Your Name</title>
<link rel="stylesheet" href="/style.css" />
</head>
<body>
<div id="app">
<nav id="nav"></nav>
<main>
<article>
<h1>Your first post title</h1>
<p class="post-meta">June 12, 2026</p>
<p>Your post content starts here.</p>
<h2>A subheading</h2>
<p>More content.</p>
<pre><code>some code block if you need it</code></pre>
<p><a href="/blog.html">← Back to blog</a></p>
</article>
</main>
</div>
<script src="/script.js"></script>
</body>
</html>
|