index.html (709B)
1 --- 2 title: News 3 --- 4 5 {% include header.html %} 6 7 <div class="hmargin" style="float: right"><a class="groups_link" style="color: #fff" 8 href="https://groups.google.com/group/capnproto-announce">Get Email Updates</a> <a class="twitter_link" style="color: #fff" href="https://twitter.com/capnproto">Follow on Twitter</a></div> 9 10 <h1>News</h1> 11 12 {% for post in site.posts %} 13 <h2><a href="{{ site.baseurl }}.{{ post.url }}">{{ post.title }}</a></h2> 14 <p class="author"> 15 <a href="https://github.com/{{ post.author }}">{{ post.author }}</a> 16 {% if post.author == 'kentonv' %} 17 {% endif %} 18 on <span class="date">{{ post.date | date_to_string }}</span> 19 </p> 20 {{ post.content }} 21 {% endfor %} 22 23 {% include footer.html %}