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
|
<!DOCTYPE html>
<html>
<head>
<title>Post Excerpts</title>
</head>
<body>
<div class="index">
<h1>Posts</h1>
<ul class="posts">
<li data-slug="asciidoc">
<h2><a href="/2018/01/02/asciidoc.html">Excerpt Separator in AsciiDoc</a></h2>
<p class="excerpt"><div class="paragraph">
<p>This is part of the excerpt.</p>
</div>
<div class="paragraph">
<p>This is also part of the excerpt.</p>
</div></p>
</li>
<li data-slug="markdown">
<h2><a href="/2018/01/01/markdown.html">Excerpt Separator in Markdown</a></h2>
<p class="excerpt"><p>This is part of the excerpt.</p>
<p>This is also part of the excerpt.</p>
</p>
</li>
</ul>
</div>
</body>
</html>
|