forked from artemsheludko/flexton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·39 lines (36 loc) · 1.56 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
---
layout: home
---
{% if paginator.page %}
{% assign offset = paginator.page | minus:1 | times:paginator.per_page %}
{% assign currentPage = paginator.page %}
{% else %}
{% assign offset = 0 %}
{% assign currentPage = 1 %}
{% endif %}
{% include header.html %}
<div class="c-posts o-opacity" data-page="{{ currentPage }}" data-totalPages="{{ paginator.total_pages }}">
{% for post in site.posts limit:site.paginate offset:offset %}
<article class="c-post">
{% if post.image %}
<a class="c-post-thumbnail o-opacity" style="background-image: url({{"/images/" | prepend: site.baseurl | append : post.image}})"
href="{{post.url | prepend: site.baseurl}}"></a>
{% else %} {% endif %}
<div class="c-post-content">
<h2 class="c-post-title">
<a href="{{post.url | prepend: site.baseurl}}">{{post.title}}</a>
</h2>
<p>{{ post.content | strip_html | truncatewords: 15 }}</p>
<span class="c-post-date">{{post.date | date: '%Y, %b %d'}} — </span>
<span class="c-post-words">{% capture words %}{{ post.content | number_of_words }}{% endcapture %}{% unless words contains "-" %}{{ words |
plus: 250 | divided_by: 250 | append: " minute read" }}{% endunless %}</span>
</div>
</article> <!-- /.c-post -->
{% endfor %}
</div> <!-- /.c-posts -->
{% assign postCount = site.posts | size %}
{% assign postsCovered = site.paginate | plus:offset %}
{% if postsCovered < postCount %}
<button class="c-load-more c-btn c-btn--middle">Load more posts</button>
{% endif %}
{% include categories.html %}