-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpost-card-previous.html
42 lines (42 loc) · 2.29 KB
/
post-card-previous.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
40
41
42
<article class="post-card {{ page.previous.class }}{% unless page.previous.cover %} no-image{% endunless %}">
{% if page.previous.cover %}
<a class="post-card-image-link" href="{{ site.baseurl }}{{ page.previous.url | remove_first: '/' }}">
<div class="post-card-image" style="background-image: url({{ site.baseurl }}{{ page.previous.cover }})"></div>
</a>
{% endif %}
<div class="post-card-content">
<a class="post-card-content-link" href="{{ site.baseurl }}{{ page.previous.url | remove_first: '/' }}">
<header class="post-card-header">
{% if page.previous.tags.size > 0 %}
{% for tag in page.previous.tags %}
{% if forloop.index == page.previous.tags.size %}
<span class="post-card-tags">{{ tag | capitalize }}</span>
{% else %}
<span class="post-card-tags">{{ tag | capitalize }}</span>
{% endif %}
{% endfor %}
{% endif %}
<h2 class="post-card-title">{{ page.previous.title }}</h2>
</header>
<section class="post-card-excerpt">
{% if post.excerpt %}
<p>{{ post.excerpt | strip_html | truncatewords: 33, "" }}</p>
{% else %}
<p>{{ post.content | strip_html | truncatewords: 33, "" }}</p>
{% endif %}
</section>
</a>
<footer class="post-card-meta">
{% for author in site.data.authors %}
{% if author[1].username == page.previous.author %}
{% if author[1].picture %}
<img class="author-profile-image" src="{{ site.baseurl }}{{ author[1].picture }}" alt="{{ author[1].name }}" />
{% endif %}
<span class="post-card-author">
<a href="{{ site.baseurl }}author/{{ page.previous.author }}/">{{ author[1].name }}</a>
</span>
{% endif %}
{% endfor %}
</footer>
</div>
</article>