index.html 803 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. ---
  2. layout: page
  3. tagline:
  4. ---
  5. {% for post in site.posts limit: 1 %}
  6. <div class="page-header">
  7. <h1>{{ post.title }} {% if post.tagline %} <small>{{ post.tagline }}</small>{% endif %}</h1>
  8. </div>
  9. <article class="home">
  10. <div>
  11. {% if post.fullview %}
  12. {{ post.content }}
  13. {% else %}
  14. {% if post.shortinfo %}
  15. {{ post.shortinfo }}
  16. {% elsif post.description %}
  17. {{ post.description }}
  18. {% else %}
  19. {{ post.excerpt }}
  20. {% endif %}
  21. {% endif %}
  22. </div>
  23. <div class="clearfix"></div>
  24. <hr/>
  25. <ul class="pager">
  26. {% if site.posts[1] %}
  27. <li class="next">
  28. <a href="{{ site.BASE_PATH }}{{ site.posts[1].url }}" title="{{ site.posts[1].title }}">{{ site.posts[1].title }} &rarr;</a>
  29. </li>
  30. {% endif %}
  31. </ul>
  32. </article>
  33. {% endfor %}