post.html 776 Bytes
Newer Older
1 2 3
{% include header.html %}

<div class="hmargin" style="float: right"><a class="groups_link" style="color: #fff"
Kenton Varda's avatar
Kenton Varda committed
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 9 10 11 12 13 14 15

<h2>{{ page.title }}</h2>
<p class="author">
  <a href="https://github.com/{{ page.author }}">{{ page.author }}</a>
  on <span class="date">{{ page.date | date_to_string }}</span>
</p>
{{ content }}
<script type="text/javascript">setupNewsSidebar([
    {% for post in site.posts %}
16
      { title: "{{ post.title }}", url: "{{ site.baseurl }}.{{ post.url }}" },
17 18 19
    {% endfor %}
    ]);</script>
{% include footer.html %}