blog.html (263B)
1 --- 2 layout: clean 3 --- 4 5 <section class="blog" id="main"> 6 <h2>Blog Posts</h2> 7 <ul> 8 {% for post in site.posts %} 9 <li> 10 <a href="{{ post.url }}#main">{{ post.title }}</a> 11 {{ post.excerpt }} 12 </li> 13 {% endfor %} 14 </ul> 15 </section>