blob: 412b4ec5515eaf007d2173a1ac8676727ec9d4ae (
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
33
34
35
36
|
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title></title>
</head>
<body>
<main class="homepage">
<h1>hello world</h1>
<ul class="posts">
<li class="post">
<a href="/">Test post please ignore</a>
</li>
</ul>
</main>
<main class="post">
<article>
<h1>post title</h1>
<main>
Fringilla ut morbi tincidunt augue interdum velit euismod!
Interdum velit laoreet id donec ultrices tincidunt arcu, non
sodales neque sodales ut etiam sit amet nisl purus, in
mollis nunc sed.
</main>
</article>
</main>
<main class="taxon">
<ul class="posts">
<li class="post">
<a href="/">Test post please ignore</a>
</li>
</ul>
</main>
</body>
</html>
|