| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- ---
- layout: page
- tagline:
- ---
- {% for post in site.posts limit: 1 %}
- <div class="page-header">
- <h1>{{ post.title }} {% if post.tagline %} <small>{{ post.tagline }}</small>{% endif %}</h1>
- </div>
- <article class="home">
- <div>
- {% if post.fullview %}
- {{ post.content }}
- {% else %}
- {% if post.shortinfo %}
- {{ post.shortinfo }}
- {% elsif post.description %}
- {{ post.description }}
- {% else %}
- {{ post.excerpt }}
- {% endif %}
- {% endif %}
- </div>
-
- <div class="clearfix"></div>
- <hr/>
- <ul class="pager">
- {% if site.posts[1] %}
- <li class="next">
- <a href="{{ site.BASE_PATH }}{{ site.posts[1].url }}" title="{{ site.posts[1].title }}">{{ site.posts[1].title }} →</a>
- </li>
- {% endif %}
- </ul>
- </article>
- {% endfor %}
|