mirror of
https://git.mills.io/prologic/zs
synced 2024-11-25 06:46:11 +03:00
18 lines
314 B
HTML
18 lines
314 B
HTML
<html>
|
|
<head>
|
|
<title>My blog</title>
|
|
<link href="styles.css" rel="stylesheet" type="text/css" />
|
|
</head>
|
|
<body>
|
|
<p>Here goes list of posts</p>
|
|
<ul>
|
|
<li>
|
|
<a href="/posts/hello.html">First post</a>
|
|
</li>
|
|
<li>
|
|
<a href="/posts/update.html">Second post</a>
|
|
</li>
|
|
</ul>
|
|
</body>
|
|
</html>
|