forked from pytorch/pytorch.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimilar_posts_module.html
40 lines (34 loc) · 1.31 KB
/
similar_posts_module.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
{% assign current_category = page.category.first %}
{% if current_category != nil %}
<div class="container-fluid similar-posts-module">
<div class="container">
<nav class="navbar navbar-expand-lg navbar-light module-content">
<ul class="navbar-nav">
<li class="nav-item">
<p class="module-heading">Similar Posts</p>
</li>
<li class="nav-item">
<a href="{{ site.baseurl }}/blog" class=" see-more-posts with-right-arrow">
See All Posts
</a>
</li>
</ul>
</nav>
<div class="row">
{% for category in current_category %}
{% for post in site.categories[category] limit: 3 %}
{% if post.url != page.url %}
<div class="col-md-4 similar-posts">
<p class="blog-date">{{ post.date | date: '%B %d, %Y' }}</p>
<h4>
<a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
</h4>
<p>{{ post.excerpt | remove: '<p>' | remove: '</p>' | truncate: 150 }}</p>
</div>
{% endif %}
{% endfor %}
{% endfor %}
</div>
</div>
</div>
{% endif %}