bob-the-miner
Version:
Bob is a web miner
48 lines (44 loc) • 1.2 kB
HTML
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>My Blog</title>
</head>
<body>
<h1>My Blog</h1>
<ul>
<li>
<div class="post">
<h2>Welcome Bob the Web Miner</h2>
<div class="sub-head">
sub-head here ! Lorem ipsum dolor sit amet,
consectetur adipisicing elit,s irure dolor in reprehenderit in
voluptate velit esse cillum dolore eu fugiat
<br/>
<a class="link-1" href="post/1.html">read more ...</a>
</div>
</div>
</li>
<li>
<div class="post">
<h2>Scraper community : a new kid is on the block</h2>
<div class="sub-head">
another sub-head here !
<br/>
<a class="link-2" href="post/2.html">read more ...</a>
</div>
</div>
</li>
<li>
<div class="post">
<h2>The Lost Post</h2>
<div class="sub-head">
This one has an invalid url to the body content (too bad!)
<br/>
<a class="link-3" href="post/NOT_FOUND.html">read more ...</a>
</div>
</div>
</li>
</ul>
</body>
</html>