File tree 3 files changed +19
-14
lines changed 3 files changed +19
-14
lines changed Original file line number Diff line number Diff line change
1
+ < div class ="vertical-blog-container ">
2
+ < div class ="col-md-4 ">
3
+ < p class ="blog-date "> {{ post.date | date: '%B %d, %Y' }}</ p >
4
+ < h4 >
5
+ < a href ="{{ site.baseurl }}{{ post.url }} "> {{ post.title }}</ a >
6
+ </ h4 >
7
+ < p > {{ post.excerpt | remove: '< p > ' | remove: '</ p > ' | truncate: 500}}</ p >
8
+ < img src ="{{ post.image }} " class ="img-fluid ">
9
+ </ div >
10
+ < a href ="{{ site.baseurl }}{{ post.url }} " class ="btn btn-lg with-right-arrow ">
11
+ Read More
12
+ </ a >
13
+ </ div >
Original file line number Diff line number Diff line change 56
56
{% for tag in site.tags %}
57
57
< div class ="blog-tag-container " data-tag ="{{ tag[0] }} ">
58
58
{% for post in tag[1] %}
59
- {{ post }}
59
+
60
+ {% include blog_post_nav.html %}
61
+
60
62
{% endfor %}
61
63
</ div >
62
64
{% endfor %}
Original file line number Diff line number Diff line change @@ -39,19 +39,9 @@ <h1 class="blog-index-title">
39
39
< div class ="container ">
40
40
< div class ="row blog-vertical ">
41
41
{% for post in posts %}
42
- < div class ="vertical-blog-container ">
43
- < div class ="col-md-4 ">
44
- < p class ="blog-date "> {{ post.date | date: '%B %d, %Y' }}</ p >
45
- < h4 >
46
- < a href ="{{ site.baseurl }}{{ post.url }} "> {{ post.title }}</ a >
47
- </ h4 >
48
- < p > {{ post.excerpt | remove: '< p > ' | remove: '</ p > ' | truncate: 500}}</ p >
49
- < img src ="{{ post.image }} " class ="img-fluid ">
50
- </ div >
51
- < a href ="{{ site.baseurl }}{{ post.url }} " class ="btn btn-lg with-right-arrow ">
52
- Read More
53
- </ a >
54
- </ div >
42
+
43
+ {% include blog_post_nav.html %}
44
+
55
45
{% endfor %}
56
46
</ div >
57
47
You can’t perform that action at this time.
0 commit comments