File: index.html

package info (click to toggle)
ruby-jekyll-asciidoc 3.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,536 kB
  • sloc: ruby: 1,802; sh: 36; makefile: 6
file content (21 lines) | stat: -rw-r--r-- 343 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
---
<!DOCTYPE html>
<html>
<head>
<title>Post Excerpts</title>
</head>
<body>
<div class="index">
<h1>Posts</h1>
<ul class="posts">
{% for post in site.posts %}
<li data-slug="{{ post.slug }}">
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
<p class="excerpt">{{ post.excerpt }}</p>
</li>
{% endfor %}
</ul>
</div>
</body>
</html>