post.html (783B)
1 {% include header.html %} 2 3 <div class="hmargin" style="float: right"><a class="groups_link" style="color: #fff" 4 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> 5 6 <h1><a href="{{ site.baseurl }}news/">News</a></h1> 7 8 <h2>{{ page.title }}</h2> 9 <p class="author"> 10 <a href="https://github.com/{{ page.author }}">{{ page.author }}</a> 11 on <span class="date">{{ page.date | date_to_string }}</span> 12 </p> 13 {{ content }} 14 <script type="text/javascript">var CAPNP_NEWS_SIDEBAR = [ 15 {% for post in site.posts %} 16 { title: "{{ post.title }}", url: "{{ site.baseurl }}.{{ post.url }}" }, 17 {% endfor %} 18 ];</script> 19 {% include footer.html %}