index.html 569 B

1234567891011121314151617181920
  1. ---
  2. layout: default
  3. ---
  4. <nav id='sidebar'>
  5. {% include nav.html %}
  6. </nav>
  7. <section id='content'>
  8. {% for post in site.posts %}
  9. <article class='{{ post.type }}'>
  10. <a name='{{ post.url }}' href='#{{ post.url }}'>
  11. <h2>{% if post.type %}<code><b>{{ post.type }}</b> {{ post.apiurl }}</code> {% endif %}{{ post.title }}</h2></a>
  12. <section class='body'>
  13. {{ post.content }}
  14. <div>{% if post.sample_doc %} For more example, see the <a href=doc/{{post.sample_doc}}>{{post.sample_doc}}</a>{% endif %}</div>
  15. </section>
  16. </article>
  17. {% endfor %}
  18. </section>