aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/_includes/posts/feed.html
blob: 4b4ea8b9233a989b02b02ed676023a88531a3edc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{% if site.posts.size == 0 %}
  <p class="h3">Sorry, no posts have been added yet.</p>
{% else %}
  {% for post in paginator.posts %}
    <div class="post-entry">
      <div class="post-header">
        <h2><a href="{{ post.url | relative_url }}">{{ post.title }}</a></h2>
        <div class="post-date">
          <p class="text-muted">
            {% if post.category %}
              <span class="glyphicon glyphicon-folder-open"></span>&nbsp;<a class="category" href="{{ '/' | relative_url }}{{ post.category | slugify: 'pretty' }}/">{{ post.category }}</a>
            {% endif %}
            <span class="glyphicon glyphicon-time"></span>&nbsp;{{ post.date | date: '%-d&nbsp;%b&nbsp;%Y' }}
          </p>
        </div>
      </div>
      {{ post.excerpt | markdownify }}
    </div>
  {% endfor %}
  <div class="text-center">
    {% include posts/paginator.html %}
  </div>
{% endif %}